forked from boostorg/regex
Fix declaration order in test case
This commit is contained in:
@ -9,16 +9,19 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <boost/regex.hpp>
|
|
||||||
|
|
||||||
#ifndef BOOST_NO_CXX11_CHAR32_T
|
#ifndef BOOST_NO_CXX11_CHAR32_T
|
||||||
|
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
namespace boost {
|
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
|
struct char32_traits
|
||||||
{
|
{
|
||||||
typedef char32_t char_type;
|
typedef char32_t char_type;
|
||||||
|
Reference in New Issue
Block a user