minor BOOST_THROW_EXCEPTION fix.

[SVN r58499]
This commit is contained in:
Emil Dotchevski
2009-12-22 20:59:23 +00:00
committed by Peter Dimov
parent fed2b48aa9
commit 89e6b4ef35

View File

@ -39,7 +39,7 @@
# define BOOST_THROW_EXCEPTION(x) ::boost::throw_exception(::boost::enable_error_info(x) <<\
::boost::throw_function(BOOST_CURRENT_FUNCTION) <<\
::boost::throw_file(__FILE__) <<\
::boost::throw_line((int)__LINE__))
::boost::throw_line(__LINE__))
#else
# define BOOST_THROW_EXCEPTION(x) ::boost::throw_exception(x)
#endif