Merging minor tested bugfixes from trunk.

[SVN r77592]
This commit is contained in:
Emil Dotchevski
2012-03-27 19:31:48 +00:00
committed by Peter Dimov
parent 3558cf31c5
commit abec03383f
2 changed files with 30 additions and 3 deletions

View File

@ -9,7 +9,7 @@
#if defined(_MSC_VER)
#define BOOST_ATTRIBUTE_NORETURN __declspec(noreturn)
#elif defined(__GNUC__)
#define BOOST_ATTRIBUTE_NORETURN __attribute__((noreturn))
#define BOOST_ATTRIBUTE_NORETURN __attribute__((__noreturn__))
#else
#define BOOST_ATTRIBUTE_NORETURN
#endif