Sha256: c199595a8bb3176a98f08a17e5809caeae0983d2be509e54a0e7f246ca79c280
Contents?: true
Size: 511 Bytes
Versions: 12
Compression:
Stored size: 511 Bytes
Contents
/* (c) 2014 Glen Joseph Fernandes <glenjofe -at- gmail.com> Distributed under the Boost Software License, Version 1.0. http://boost.org/LICENSE_1_0.txt */ #ifndef BOOST_ALIGN_DETAIL_ADDRESS_HPP #define BOOST_ALIGN_DETAIL_ADDRESS_HPP #include <boost/cstdint.hpp> #include <cstddef> namespace boost { namespace alignment { namespace detail { #if defined(BOOST_HAS_INTPTR_T) typedef boost::uintptr_t address; #else typedef std::size_t address; #endif } /* .detail */ } /* .alignment */ } /* .boost */ #endif
Version data entries
12 entries across 12 versions & 2 rubygems