Skip to content

Commit

Permalink
GH-14 Remove unneeded includes
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Apr 13, 2024
1 parent b9a4ea6 commit 8deae48
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions libraries/libfc/include/fc/log/logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ namespace fc
logger( const std::string& name, const logger& parent = nullptr );
logger( std::nullptr_t );
logger( const logger& c );
logger( logger&& c );
logger( logger&& c ) noexcept;
~logger();
logger& operator=(const logger&);
logger& operator=(logger&&);
logger& operator=(logger&&) noexcept;
friend bool operator==( const logger&, nullptr_t );
friend bool operator!=( const logger&, nullptr_t );

Expand Down Expand Up @@ -133,13 +133,9 @@ namespace fc
FC_MULTILINE_MACRO_END

#include <boost/preprocessor/seq/for_each.hpp>
#include <boost/preprocessor/seq/enum.hpp>
#include <boost/preprocessor/seq/size.hpp>
#include <boost/preprocessor/seq/seq.hpp>
#include <boost/preprocessor/stringize.hpp>
#include <boost/preprocessor/punctuation/paren.hpp>


#define FC_FORMAT_ARG(r, unused, base) \
BOOST_PP_STRINGIZE(base) ": ${" BOOST_PP_STRINGIZE( base ) "} "

Expand Down

0 comments on commit 8deae48

Please sign in to comment.