You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In libpqxx 8.0 we will assume compiler support for C++20. As of 7.10 we also have a streamlined system of SQL execution functions.
Combining those things it becomes more feasible to pass std::source_location in various places, and include it when throwing exceptions. This is what replaces the old "description" parameters. It won't be perfect from the start: the idea is to get the source location where libpqxx gets called from the outside, i.e. errors will indicate a location inside the caller's code.
The text was updated successfully, but these errors were encountered:
In libpqxx 8.0 we will assume compiler support for C++20. As of 7.10 we also have a streamlined system of SQL execution functions.
Combining those things it becomes more feasible to pass
std::source_location
in various places, and include it when throwing exceptions. This is what replaces the old "description" parameters. It won't be perfect from the start: the idea is to get the source location where libpqxx gets called from the outside, i.e. errors will indicate a location inside the caller's code.The text was updated successfully, but these errors were encountered: