|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r49051 - branches/bcbboost/boost
From: nicola.musatti_at_[hidden]
Date: 2008-09-29 17:48:53
Author: nmusatti
Date: 2008-09-29 17:48:52 EDT (Mon, 29 Sep 2008)
New Revision: 49051
URL: http://svn.boost.org/trac/boost/changeset/49051
Log:
CodeGear patch
Text files modified:
branches/bcbboost/boost/lexical_cast.hpp | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
Modified: branches/bcbboost/boost/lexical_cast.hpp
==============================================================================
--- branches/bcbboost/boost/lexical_cast.hpp (original)
+++ branches/bcbboost/boost/lexical_cast.hpp 2008-09-29 17:48:52 EDT (Mon, 29 Sep 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