|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r49154 - trunk/boost
From: nicola.musatti_at_[hidden]
Date: 2008-10-06 16:22:11
Author: nmusatti
Date: 2008-10-06 16:22:10 EDT (Mon, 06 Oct 2008)
New Revision: 49154
URL: http://svn.boost.org/trac/boost/changeset/49154
Log:
Patch from Ticket #2370
Text files modified:
trunk/boost/lexical_cast.hpp | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
Modified: trunk/boost/lexical_cast.hpp
==============================================================================
--- trunk/boost/lexical_cast.hpp (original)
+++ trunk/boost/lexical_cast.hpp 2008-10-06 16:22:10 EDT (Mon, 06 Oct 2008)
@@ -472,6 +472,8 @@
# pragma warning( push )
// C4146: unary minus operator applied to unsigned type, result still unsigned
# pragma warning( disable : 4146 )
+#elif defined( __BORLANDC__ )
+# pragma option push -w-8041
#endif
template<class T>
inline
@@ -483,6 +485,8 @@
}
#if (defined _MSC_VER)
# pragma warning( pop )
+#elif defined( __BORLANDC__ )
+# pragma option pop
#endif
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk