From 1f0b76bdc686a32c84bcad9610f47ca2bc26f912 Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Thu, 2 Mar 2023 10:17:10 -0800 Subject: [PATCH] Fix header organization --- include/boost/charconv/detail/emulated128.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/charconv/detail/emulated128.hpp b/include/boost/charconv/detail/emulated128.hpp index 9cd88ff..1b3dccc 100644 --- a/include/boost/charconv/detail/emulated128.hpp +++ b/include/boost/charconv/detail/emulated128.hpp @@ -5,14 +5,14 @@ // If the architecture (e.g. ARM) does not have __int128 we need to emulate it +#ifndef BOOST_CHARCONV_DETAIL_EMULATED128_HPP +#define BOOST_CHARCONV_DETAIL_EMULATED128_HPP + #include #include #include #include -#ifndef BOOST_CHARCONV_DETAIL_EMULATED128_HPP -#define BOOST_CHARCONV_DETAIL_EMULATED128_HPP - namespace boost { namespace charconv { namespace detail { // Emulates a __int128 using 2x 64bit ints (high and low)