Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- //
- // Copyright(c) 2016-2018 Gabi Melman.
- // Distributed under the MIT License (http://opensource.org/licenses/MIT)
- //
-
- #pragma once
-
- //
- // Include a bundled header-only copy of fmtlib or an external one.
- // By default spdlog include its own copy.
- //
-
- #if !defined(SPDLOG_FMT_EXTERNAL)
- #ifdef SPDLOG_HEADER_ONLY
- #ifndef FMT_HEADER_ONLY
- #define FMT_HEADER_ONLY
- #endif
- #endif
- #ifndef FMT_USE_WINDOWS_H
- #define FMT_USE_WINDOWS_H 0
- #endif
- #include "bundled/core.h"
- #include "bundled/format.h"
- #else // SPDLOG_FMT_EXTERNAL is defined - use external fmtlib
- #include <fmt/core.h>
- #include <fmt/format.h>
- #endif
|