diff options
author | Pjotr Prins | 2023-06-29 11:39:42 +0200 |
---|---|---|
committer | Pjotr Prins | 2023-06-29 11:39:42 +0200 |
commit | db47155465d1aa01191b792414fb1bc545481629 (patch) | |
tree | bd351445dae8774c28328aba235a9f1d9a13475f | |
parent | 81885df75204d3877cc34d856fa99ba826366d6f (diff) | |
download | pangemma-db47155465d1aa01191b792414fb1bc545481629.tar.gz |
Fix build on guix using limits
-rw-r--r-- | src/mathfunc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mathfunc.cpp b/src/mathfunc.cpp index e74a841..68d17a7 100644 --- a/src/mathfunc.cpp +++ b/src/mathfunc.cpp @@ -24,7 +24,7 @@ #include <fstream> #include <iomanip> #include <iostream> -#include <limits.h> +#include <limits> #include <map> #include <regex> #include <set> |