forked from pool/azove
7f12f3fe35
used by polymake OBS-URL: https://build.opensuse.org/request/show/176405 OBS-URL: https://build.opensuse.org/package/show/science/azove?expand=0&rev=1
25 lines
555 B
Diff
25 lines
555 B
Diff
From: Jan Engelhardt <jengelh@inai.de>
|
|
2013-05-23 10:58:06.612359124 +0200
|
|
|
|
build: resolve compiler error due to missing includes
|
|
|
|
conBDD.cpp: In member function 'void conBDD::build()':
|
|
conBDD.cpp:59:20: error: 'numeric_limits' was not declared in this scope
|
|
|
|
---
|
|
conBDD.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
Index: azove-2.0/conBDD.cpp
|
|
===================================================================
|
|
--- azove-2.0.orig/conBDD.cpp
|
|
+++ azove-2.0/conBDD.cpp
|
|
@@ -21,6 +21,7 @@
|
|
|
|
#include "conBDD.hpp"
|
|
|
|
+#include <limits>
|
|
#include <stack>
|
|
|
|
|