Skip to content

Commit b9c320c

Browse files
Release prmers
1 parent 57dfe34 commit b9c320c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

prmers.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* This code is released as free software.
2626
*/
2727
#include <cstdlib>
28+
#define NOMINMAX
2829
#ifdef _WIN32
2930
#include <windows.h>
3031
#endif
@@ -53,7 +54,12 @@
5354
#include <set>
5455
#include <map>
5556
#include "proof/proof.h"
56-
57+
#ifdef max
58+
#undef max
59+
#endif
60+
#ifdef min
61+
#undef min
62+
#endif
5763

5864
// Global variables for backup functionality
5965
volatile std::sig_atomic_t g_interrupt_flag = 0; // Flag to indicate SIGINT received

0 commit comments

Comments
 (0)