minor BOOST_THROW_EXCEPTION fix.

[SVN r58499]
This commit is contained in:
Emil Dotchevski
2009-12-22 20:59:23 +00:00
parent 72c90873d0
commit 879f416926

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