Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolay Bogoychev <nheart@gmail.com>2021-10-29 19:47:28 +0300
committerNikolay Bogoychev <nheart@gmail.com>2021-10-29 19:47:28 +0300
commit0d20bf0d9e04d15ebc866754ac71c33ddf99e403 (patch)
tree5744f9d56b03558a88fba4cd4a5aeaa91fbbab3a
parentc258054a87b7c9020014558bd81819b3f7104cc0 (diff)
support gcc11gcc11support
GCC11 now explicitly requires inclusion of <memory> <thread> <limits> and <utility> breaking some older code
-rw-r--r--src/RefImplementations.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/RefImplementations.cc b/src/RefImplementations.cc
index dc40d44..d06ce72 100644
--- a/src/RefImplementations.cc
+++ b/src/RefImplementations.cc
@@ -12,6 +12,7 @@
#include <cassert>
#include <cmath>
#include <cstring>
+#include <limits>
using namespace std;