SVN: backtracexx/backtracexx.hpp

pluto pluto at pld-linux.org
Fri Nov 16 09:17:55 CET 2007


Author: pluto
Date: Fri Nov 16 09:17:54 2007
New Revision: 9058

Modified:
   backtracexx/backtracexx.hpp
Log:
- disable bogus warning about missed dll-interface for boost::logic::tribool template.

Modified: backtracexx/backtracexx.hpp
==============================================================================
--- backtracexx/backtracexx.hpp	(original)
+++ backtracexx/backtracexx.hpp	Fri Nov 16 09:17:54 2007
@@ -30,6 +30,11 @@
 
 #endif
 
+#ifdef BOOST_MSVC
+#pragma warning( push )
+#pragma warning( disable : 4251 )	//	disable warning about dll-interface for boost::logic::tribool.
+#endif 
+
 namespace backtracexx
 {
 	struct BACKTRACEXX_EXPORT Frame
@@ -56,4 +61,8 @@
 	BACKTRACEXX_EXPORT std::ostream& operator << ( std::ostream&, Trace const& );
 }
 
+#ifdef BOOST_MSVC
+#pragma warning( pop )
+#endif
+
 #endif


More information about the pld-cvs-commit mailing list