$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: David B. Held (dheld_at_[hidden])
Date: 2002-07-08 20:47:46
I would like to see the following changes in detail/lwm_win32.hpp:
(this isn't a real patch, as I don't have diff on this machine)
...
#include <boost/detail/winapi.hpp>
+#ifdef __BORLANDC__
+# pragma warn -8027 // Functions containing while are not expanded
inline
+#endif
namespace boost
{
...
} // namespace boost
+#ifdef __BORLANDC__
+# pragma warn .8027
+#endif
#endif // #ifndef BOOST_DETAIL_LWM_WIN32_HPP_INCLUDED
And these additions to detail/shared_count.hpp:
...
#include <functional> // for std::less
#include <exception> // for std::exception
+#ifdef __BORLANDC__
+# pragma warn -8026 // Functions with excep. spec. are not expanded
inline
+# pragma warn -8027 // Functions containing try are not expanded inline
+#endif
namespace boost
{
...
} // namespace boost
+#ifdef __BORLANDC__
+# pragma warn .8027
+# pragma warn .8026
+#endif
#endif // #ifndef BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED
Dave