Skip to content

Commit

Permalink
fix: add workaround for broken utf8cpp release (fixes gh #182)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhx committed Dec 28, 2023
1 parent a853502 commit 714d3a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/dwarfs/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@
#include <array>
#include <charconv>

#if __has_include(<utf8cpp/utf8.h>)
#include <utf8cpp/utf8.h>
#else
#include <utf8.h>
#endif

#include <folly/String.h>

Expand Down

0 comments on commit 714d3a4

Please sign in to comment.