blob: 339ce1a0e903768844680f81c535ef16ef45e77e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
https://bugs.gentoo.org/792798
From debc5de2d0ac9654c01db080448df064b808c56e Mon Sep 17 00:00:00 2001
From: Sam James <sam@gentoo.org>
Date: Tue, 15 Jun 2021 04:24:22 +0000
Subject: [PATCH] Fix build with GCC 11
diff --git a/src/problem/CouenneProblem.hpp b/src/problem/CouenneProblem.hpp
index e5b54a5..db28cfd 100644
--- a/src/problem/CouenneProblem.hpp
+++ b/src/problem/CouenneProblem.hpp
@@ -74,7 +74,7 @@ class Nauty;
#define COUENNE_EPS_SYMM 1e-8
struct myclass0 {
- inline bool operator() (register const Node &a, register const Node &b) {
+ inline bool operator() (register const Node &a, register const Node &b) const {
return (( a.get_code () < b.get_code ()) ||
(( a.get_code () == b.get_code () &&
@@ -120,7 +120,7 @@ class Nauty;
struct myclass {
- inline bool operator() (register const Node &a, register const Node &b) {
+ inline bool operator() (register const Node &a, register const Node &b) const {
return (a.get_index() < b.get_index() );
}
};
--- a/src/cut/sdpcuts/CouenneMatrix.hpp
+++ b/src/cut/sdpcuts/CouenneMatrix.hpp
@@ -69,7 +69,7 @@ namespace Couenne {
struct compare_scalars {
inline bool operator() (register CouenneScalar * const &a,
- register CouenneScalar * const &b)
+ register CouenneScalar * const &b) const
{return a -> getIndex () < b -> getIndex ();}
};
--
2.32.0
|