Fix test on compilers without char32_t

As the include for BOOST_NO_CXX11_CHAR32_T was missing, the test didn't compile.
This commit is contained in:
Marcel Raad
2016-03-11 17:23:53 +01:00
parent e217808156
commit 3ea03e364c

View File

@ -9,6 +9,7 @@
*
*/
#include <boost/config.hpp>
#ifndef BOOST_NO_CXX11_CHAR32_T
@ -111,4 +112,4 @@ int main()
int main() { return 0; }
#endif
#endif