Photon 1.0.0
Loading...
Searching...
No Matches
std.h
Go to the documentation of this file.
1//
2// Copyright(c) 2016 Gabi Melman.
3// Distributed under the MIT License (http://opensource.org/licenses/MIT)
4//
5
6#pragma once
7//
8// include bundled or external copy of fmtlib's std support (for formatting e.g. std::filesystem::path, std::thread::id, std::monostate,
9// std::variant, ...)
10//
11
12#if !defined(SPDLOG_USE_STD_FORMAT)
13#if !defined(SPDLOG_FMT_EXTERNAL)
14#ifdef SPDLOG_HEADER_ONLY
15#ifndef FMT_HEADER_ONLY
16#define FMT_HEADER_ONLY
17#endif
18#endif
20#else
21#include <fmt/std.h>
22#endif
23#endif