diff options
author | rubidium42 <rubidium@openttd.org> | 2021-06-13 20:39:42 +0200 |
---|---|---|
committer | rubidium42 <rubidium42@users.noreply.github.com> | 2021-06-13 21:02:17 +0200 |
commit | c811d42d0c5320ab03b59227379367dedcda53cc (patch) | |
tree | 6f3035fc7586cc1de076b98d1a69616b1888847b /src | |
parent | 721c3fdfb4870601160865d78a7c8fcc586e3364 (diff) | |
download | openttd-c811d42d0c5320ab03b59227379367dedcda53cc.tar.xz |
Fix a99ac62: fmt's include of cassert breaks our assert logic
Diffstat (limited to 'src')
-rw-r--r-- | src/3rdparty/fmt/format-inl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/fmt/format-inl.h b/src/3rdparty/fmt/format-inl.h index 8f2fe7354..6cd9db93c 100644 --- a/src/3rdparty/fmt/format-inl.h +++ b/src/3rdparty/fmt/format-inl.h @@ -8,7 +8,7 @@ #ifndef FMT_FORMAT_INL_H_ #define FMT_FORMAT_INL_H_ -#include <cassert> +/* Do not include cassert as that breaks our own asserts. */ #include <cctype> #include <climits> #include <cmath> |