Skip to content

Commit

Permalink
fix: revert workaround -Wstringop-overflow warnings from fmt (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks authored Jan 6, 2025
1 parent 81c11e2 commit ee04ab2
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/iguana/services/Logger.h
Original file line number Diff line number Diff line change
@@ -1,21 +1,8 @@
#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 ee04ab2

Please sign in to comment.