mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-27 07:59:03 +08:00
Removed SPDLOG_EOL define
This commit is contained in:
parent
77b07b3a10
commit
f70670d26c
@ -22,16 +22,12 @@ SPDLOG_API std::tm gmtime(const std::time_t &time_tt) noexcept;
|
||||
SPDLOG_API std::tm gmtime() noexcept;
|
||||
|
||||
// eol definition
|
||||
#if !defined(SPDLOG_EOL)
|
||||
#ifdef _WIN32
|
||||
#define SPDLOG_EOL "\r\n"
|
||||
#else
|
||||
#define SPDLOG_EOL "\n"
|
||||
#endif
|
||||
#ifdef _WIN32
|
||||
constexpr static const char *default_eol = "\r\n";
|
||||
#else
|
||||
constexpr static const char *default_eol = "\n";
|
||||
#endif
|
||||
|
||||
constexpr static const char *default_eol = SPDLOG_EOL;
|
||||
|
||||
// folder separator
|
||||
#if !defined(SPDLOG_FOLDER_SEPS)
|
||||
#ifdef _WIN32
|
||||
|
Loading…
Reference in New Issue
Block a user