libpqxx
The C++ client library for PostgreSQL
ignore-deprecated-pre.hxx
1 
14 #if defined(PQXX_IGNORING_DEPRECATED)
15 # error "Started an 'ignore-deprecated' block inside another."
16 #endif
17 
18 #define PQXX_IGNORING_DEPRECATED
19 
20 #if defined(__GNUC__)
21 # pragma GCC diagnostic push
22 # pragma GCC diagnostic ignored "-Wdeprecated-declarations"
23 #endif // __GNUC__
24 
25 #ifdef _MSC_VER
26 # pragma warning(push)
27 # pragma warning(disable : 4996)
28 #endif