Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into threadpool
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Sep 19, 2024
2 parents bdd6685 + f27ce57 commit 79f0173
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ foreach example, info : example_sources
[ get_option('test_data_file'), '100' ], # don't run too many events, or meson test log will be huge
),
env: project_test_env,
timeout: 60,
timeout: 120,
)
endif
endif
Expand Down
14 changes: 14 additions & 0 deletions src/iguana/services/Logger.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
#pragma once

// workaround https://github.com/fmtlib/fmt/issues/4133
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wshift-overflow"
#else
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstringop-overflow"
#endif
#include <fmt/color.h>
#include <fmt/format.h>
#include <fmt/ranges.h>
#ifdef __clang__
#pragma clang diagnostic pop
#else
#pragma GCC diagnostic pop
#endif

#include <functional>
#include <unordered_map>

Expand Down

0 comments on commit 79f0173

Please sign in to comment.