Skip to content

Commit

Permalink
Workaround for OSS-Fuzz missing macro
Browse files Browse the repository at this point in the history
  • Loading branch information
kmilos authored Jan 14, 2025
1 parent e7a3dda commit 68c41c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/image_int.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#if __has_include(<format>)
#include <format>
#endif
#ifndef __cpp_lib_format
#if !defined(__cpp_lib_format) && ((__cplusplus < 202002L) || !defined(__clang__) || defined(__APPLE__) || (__clang_major__ < 17)) // workaround for OSS-Fuzz LLVM 18
#include <fmt/core.h>
#define stringFormat fmt::format
#else
Expand Down

0 comments on commit 68c41c9

Please sign in to comment.