mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00

git-subtree-dir: thirdparty/spdlog git-subtree-split: 32177aa77a0a20453d3e7455cac42406fc49b6ca
17 lines
316 B
C
17 lines
316 B
C
//
|
|
// Copyright(c) 2016 Gabi Melman.
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
//
|
|
|
|
#pragma once
|
|
|
|
// include external or bundled copy of fmtlib's ostream support
|
|
//
|
|
#if !defined(SPDLOG_FMT_EXTERNAL)
|
|
#include "fmt.h"
|
|
#include "bundled/ostream.h"
|
|
#else
|
|
#include <fmt/ostream.h>
|
|
#endif
|
|
|
|
|