Skip to content

Commit 5acf313

Browse files
authored
Merge pull request diffblue#2176 from mgudemann/fix/glucose_build_g++
Remove trailing `;` from namespace closing bracket
2 parents f891f37 + 213db5f commit 5acf313

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

scripts/glucose-syrup-patch

+30
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,36 @@ diff -rupNw glucose-syrup/core/SolverTypes.h glucose-syrup-patched/core/SolverTy
4343

4444
friend class ClauseAllocator;
4545

46+
diff -rupNw glucose-syrup/mtl/Clone.h glucose-syrup-patched/mtl/Clone.h
47+
--- glucose-syrup/mtl/Clone.h 2014-10-03 11:10:22.000000000 +0200
48+
+++ glucose-syrup-patched/mtl/Clone.h 2018-05-10 12:35:25.150491249 +0200
49+
@@ -8,6 +8,6 @@ namespace Glucose {
50+
public:
51+
virtual Clone* clone() const = 0;
52+
};
53+
-};
54+
+}
55+
56+
#endif
57+
\ No newline at end of file
58+
diff -rupNw glucose-syrup/mtl/Clone.h~ glucose-syrup-patched/mtl/Clone.h~
59+
--- glucose-syrup/mtl/Clone.h~ 1970-01-01 01:00:00.000000000 +0100
60+
+++ glucose-syrup-patched/mtl/Clone.h~ 2018-04-21 16:58:22.950005391 +0200
61+
@@ -0,0 +1,13 @@
62+
+#ifndef Glucose_Clone_h
63+
+#define Glucose_Clone_h
64+
+
65+
+
66+
+namespace Glucose {
67+
+
68+
+ class Clone {
69+
+ public:
70+
+ virtual Clone* clone() const = 0;
71+
+ };
72+
+};
73+
+
74+
+#endif
75+
\ No newline at end of file
4676
diff -rupNw glucose-syrup/mtl/IntTypes.h glucose-syrup-patched/mtl/IntTypes.h
4777
--- glucose-syrup/mtl/IntTypes.h 2014-10-03 11:10:22.000000000 +0200
4878
+++ glucose-syrup-patched/mtl/IntTypes.h 2018-04-21 16:58:22.950005391 +0200

0 commit comments

Comments
 (0)