Skip to content

Commit

Permalink
add needed #include <stdexcept>
Browse files Browse the repository at this point in the history
Fix `error: ‘runtime_error’ is not a member of ‘std’` error during compilation with GCC 13
  • Loading branch information
Postrediori authored and Screwtapello committed Jun 8, 2023
1 parent 3ac5a1a commit 127bb97
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nall/arithmetic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
//multi-precision arithmetic
//warning: each size is quadratically more expensive than the size before it!

#include <stdexcept>

#include <nall/stdint.hpp>
#include <nall/string.hpp>
#include <nall/range.hpp>
Expand Down

0 comments on commit 127bb97

Please sign in to comment.