We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 439e4db commit edf1517Copy full SHA for edf1517
core/util/Exception.h
@@ -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
+
6
#pragma once
7
8
#include <exception>
0 commit comments