1// Copyright (c) 2001-2011 Hartmut Kaiser
2// http://spirit.sourceforge.net/
3//
4// Distributed under the Boost Software License, Version 1.0. (See accompanying
5// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7#ifndef BOOST_SPIRIT_SUPPORT_DETAIL_ENDIAN_HPP
8#define BOOST_SPIRIT_SUPPORT_DETAIL_ENDIAN_HPP
9
10#if defined(_MSC_VER)
11#pragma once
12#endif
13
14// We need to treat the endian number types as PODs
15#if !defined(BOOST_ENDIAN_FORCE_PODNESS)
16#define BOOST_ENDIAN_FORCE_PODNESS 1
17#endif
18
19#include <boost/endian/arithmetic.hpp>
20
21#endif
22

source code of boost/libs/spirit/include/boost/spirit/home/support/detail/endian.hpp