Fix include guards without leading underscore

Remove leading undescore from the macro names, make them legal C++.
This commit is contained in:
Mateusz Łoskot
2018-09-14 23:06:02 +02:00
parent fe036c9739
commit ae4f87ceff
29 changed files with 58 additions and 58 deletions

View File

@@ -4,8 +4,8 @@
// (See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef BOOST_HISTOGRAM_TEST_UTILITY_HPP_
#define BOOST_HISTOGRAM_TEST_UTILITY_HPP_
#ifndef BOOST_HISTOGRAM_TEST_UTILITY_HPP
#define BOOST_HISTOGRAM_TEST_UTILITY_HPP
#include <boost/histogram/histogram.hpp>
#include <boost/mp11/integral.hpp>