Skip to content

Commit

Permalink
Merge pull request #19 from rbalint/master
Browse files Browse the repository at this point in the history
Add missing #include <stdexcept> to fix build failure with GCC 10
  • Loading branch information
mpoeter authored Nov 5, 2020
2 parents e62d4d5 + 0f7ee73 commit 98287e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xenium/kirsch_bounded_kfifo_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <algorithm>
#include <atomic>
#include <cstdint>
#include <stdexcept>

#ifdef _MSC_VER
#pragma warning(push)
Expand Down Expand Up @@ -315,4 +316,4 @@ namespace xenium {
#pragma warning(pop)
#endif

#endif
#endif
1 change: 1 addition & 0 deletions xenium/kirsch_kfifo_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <algorithm>
#include <atomic>
#include <cstdint>
#include <stdexcept>

namespace xenium {
/**
Expand Down

0 comments on commit 98287e7

Please sign in to comment.