曾经被称为std::experimental::optional
现在std::optional
在 C++17 中被称为的东西。
但是一些库——例如 libpqxx——还没有被更新以删除experimental
命名空间。
因此,现在使用 g++ v8.2.0 附带的新版本 Ubuntu 18.10,尝试编译使用 libpqxx 的项目会导致如下错误:
/usr/include/pqxx/internal/statement_parameters.hxx:213:13: error: ‘experimental’ in namespace ‘std’ does not name a type
const std::experimental::optional<Arg> &arg)
^~~~~~~~~~~~
/usr/include/pqxx/internal/statement_parameters.hxx:213:35: error: expected unqualified-id before ‘<’ token
const std::experimental::optional<Arg> &arg)
^
/usr/include/pqxx/internal/statement_parameters.hxx:213:35: error: expected ‘)’ before ‘<’ token
const std::experimental::optional<Arg> &arg)
^
)
是否有某种标志我可以传递给 g++ 以便它定义旧的experimental
命名空间?
这些是 Ubuntu 18.10 中的相关版本号:
> dpkg -l | egrep "libpqxx|g\+\+"
ii g++ 4:8.2.0-1ubuntu1 amd64 GNU C++ compiler
ii g++-8 8.2.0-7ubuntu1 amd64 GNU C++ compiler
ii libpqxx-6.2 6.2.4-4 amd64 C++ library to connect to PostgreSQL
ii libpqxx-dev 6.2.4-4 amd64 C++ library to connect to PostgreSQL (development files)