compiler-internal-post.hxx 591 B

123456789101112131415161718192021
  1. /** Compiler deficiency workarounds for compiling libpqxx headers.
  2. *
  3. * To be included at the end of each libpqxx header, in order to restore the
  4. * client program's settings.
  5. *
  6. * Copyright (c) 2000-2019, Jeroen T. Vermeulen.
  7. *
  8. * See COPYING for copyright license. If you did not receive a file called
  9. * COPYING with this source code, please notify the distributor of this mistake,
  10. * or contact the author.
  11. */
  12. // NO GUARDS HERE! This code should be executed every time!
  13. #ifdef _WIN32
  14. #ifdef _MSC_VER
  15. #pragma warning (pop) // Restore client program's warning state
  16. #endif
  17. #endif