We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6be9776 commit c0242afCopy full SHA for c0242af
CHANGELOG
@@ -1,3 +1,6 @@
1
+# v1.0.1.1 - 2025-09-20
2
+- Add WIN32_LEAN_AND_MEAN
3
+
4
# v1.0.1.0 - 2025-09-12
5
- Change organization name
6
CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.10)
-set(BUILD_VERSION 1.0.1.0)
+set(BUILD_VERSION 1.0.1.1)
project(slick_queue
VERSION ${BUILD_VERSION}
include/slick_queue/slick_queue.h
@@ -20,9 +20,10 @@
20
#if defined(_MSC_VER)
21
#ifndef NOMINMAX
22
#define NOMINMAX
23
-#undef min
24
-#undef max
+#undef min // to avoid conflicts with std::min
+#undef max // to avoid conflicts with std::max
25
#endif
26
+#define WIN32_LEAN_AND_MEAN
27
#include <windows.h>
28
#include <tchar.h>
29
#else
0 commit comments