Skip to content

Commit edf1517

Browse files
fix the build issue for patch2.6.1 (#3542)
1 parent 439e4db commit edf1517

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

core/util/Exception.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Include cstdint for GCC 13+ or Clang 13+
2+
#if (defined(__GNUC__) && !defined(__clang__) && (__GNUC__ >= 13)) || (defined(__clang__) && (__clang_major__ >= 13))
3+
#include <cstdint>
4+
#endif
5+
16
#pragma once
27

38
#include <exception>

0 commit comments

Comments
 (0)