Skip to content

Commit

Permalink
ubuntu22.04 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
apbose committed Nov 19, 2024
1 parent 358db53 commit 83cfc67
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions core/util/Exception.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#if defined(__GNUC__) && !defined(__clang__)
#if __GNUC__ >= 13
#include <cstdint>
#endif
#elif defined(__clang__)
#if __clang_major__ >= 13
#include <cstdint>
#endif
#endif

#include "core/util/Exception.h"

#include <iostream>
Expand Down

0 comments on commit 83cfc67

Please sign in to comment.