-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
gabime
committed
Sep 1, 2020
1 parent
2963b9f
commit 4a9ccf7
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// Copyright(c) 2016 Gabi Melman. | ||
// Distributed under the MIT License (http://opensource.org/licenses/MIT) | ||
// | ||
|
||
#pragma once | ||
// | ||
// include bundled or external copy of fmtlib's chrono support | ||
// | ||
|
||
#if !defined(SPDLOG_FMT_EXTERNAL) | ||
#ifdef SPDLOG_HEADER_ONLY | ||
#ifndef FMT_HEADER_ONLY | ||
#define FMT_HEADER_ONLY | ||
#endif | ||
#endif | ||
#include <spdlog/fmt/bundled/chrono.h> | ||
#else | ||
#include <fmt/chrono.h> | ||
#endif |