README-UPGRADE 578 B

1234567891011
  1. NOTICES FOR USERS UPGRADING FROM EARLIER VERSIONS TO 6.x
  2. As of 6.0, libpqxx requires C++11 or better. Make sure that your libpqxx is
  3. built against the same version of the C++ standard as your own application, or
  4. there may be build problems.
  5. It may be possible to paper over some mismatches. If your application build
  6. fails with errors about `std::experimental::optional`, try defining a macro
  7. `PQXX_HIDE_EXP_OPTIONAL` in your application's build. This will suppress
  8. support for `std::experimental::optional` even if libpqxx was built to assume
  9. that the feature is present.