Moved warning 8027 suppression above the #includes

[SVN r29852]
This commit is contained in:
Peter Dimov
2005-06-30 21:49:40 +00:00
parent 675d09723a
commit 8d2aeea3a8

View File

@ -18,6 +18,10 @@
// http://www.boost.org/LICENSE_1_0.txt)
//
#ifdef __BORLANDC__
# pragma warn -8027 // Functions containing try are not expanded inline
#endif
#include <boost/config.hpp>
#include <boost/checked_delete.hpp>
#include <boost/throw_exception.hpp>
@ -30,10 +34,6 @@
#include <new> // std::bad_alloc
#include <typeinfo> // std::type_info in get_deleter
#ifdef __BORLANDC__
# pragma warn -8027 // Functions containing try are not expanded inline
#endif
namespace boost
{