Skip to content
Snippets Groups Projects
Commit 68bb1e83 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

logger: use fmt/std.h or fmt/ostream.h depending on availability

Change-Id: I3a1c6b59083426ceb28c8fb2fe4b3c2d7866e491
parent 878def4c
Branches
No related tags found
No related merge requests found
......@@ -30,9 +30,13 @@
#include <fmt/core.h>
#include <fmt/format.h>
#include <fmt/compile.h>
#if __has_include(<fmt/std.h>)
#include <fmt/std.h>
#else
#include <fmt/ostream.h>
#endif
#ifdef _MSC_VER
#include <fmt/std.h>
#include <sys_time.h>
#else
#include <sys/time.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment