Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-19 09:47:50

0001 //  Copyright (c) 2001-2011 Hartmut Kaiser
0002 //  http://spirit.sourceforge.net/
0003 //
0004 //  Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 //  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #ifndef BOOST_SPIRIT_SUPPORT_DETAIL_ENDIAN_HPP
0008 #define BOOST_SPIRIT_SUPPORT_DETAIL_ENDIAN_HPP
0009 
0010 #if defined(_MSC_VER)
0011 #pragma once
0012 #endif
0013 
0014 // We need to treat the endian number types as PODs
0015 #if !defined(BOOST_ENDIAN_FORCE_PODNESS)
0016 #define BOOST_ENDIAN_FORCE_PODNESS 1
0017 #endif
0018 
0019 #include <boost/endian/arithmetic.hpp>
0020 
0021 #endif