Fix declaration order in test case

This commit is contained in:
jzmaddock
2016-02-17 19:57:49 +00:00
parent 36b2fab227
commit e217808156

View File

@ -9,16 +9,19 @@
*
*/
#include <boost/regex.hpp>
#ifndef BOOST_NO_CXX11_CHAR32_T
#include <cstddef>
namespace boost {
std::size_t hash_value(char32_t c) { return c; }
std::size_t hash_value(char32_t const& c) { return c; }
}
#include <boost/regex.hpp>
struct char32_traits
{
typedef char32_t char_type;