/* @file log_config.hpp */ #pragma once #include namespace xo { /* Tag here b/c we want header-only library */ template struct log_config_impl { /* spaces per indent level */ static std::uint32_t indent_width; }; /*log_config_impl*/ template std::uint32_t log_config_impl::indent_width = 1; using log_config = log_config_impl; } /*namespace xo*/ /* end log_config.hpp */