Skip to content

Commit 83cfc67

Browse files
committed
ubuntu22.04 changes
1 parent 358db53 commit 83cfc67

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

core/util/Exception.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
#if defined(__GNUC__) && !defined(__clang__)
2+
#if __GNUC__ >= 13
3+
#include <cstdint>
4+
#endif
5+
#elif defined(__clang__)
6+
#if __clang_major__ >= 13
7+
#include <cstdint>
8+
#endif
9+
#endif
10+
111
#include "core/util/Exception.h"
212

313
#include <iostream>

0 commit comments

Comments
 (0)