libpqxx  4.0.1
compiler-internal-post.hxx
1 /*-------------------------------------------------------------------------
2  *
3  * FILE
4  * pqxx/compiler-internal-post.hxx
5  *
6  * DESCRIPTION
7  * Compiler deficiency workarounds for compiling libpqxx headers.
8  * To be called at the end of each libpqxx header, in order to
9  * restore the client program's settings.
10  *
11  * Copyright (c) 2006, Jeroen T. Vermeulen <jtv@xs4all.nl>
12  *
13  * See COPYING for copyright license. If you did not receive a file called
14  * COPYING with this source code, please notify the distributor of this mistake,
15  * or contact the author.
16  *
17  *-------------------------------------------------------------------------
18  */
19 // NO GUARDS HERE! This code should be executed every time!
20 
21 #ifdef _WIN32
22 
23 #ifdef _MSC_VER
24 #pragma warning (pop) // Restore client program's warning state
25 #endif
26 
27 #endif
28