From 69e3a8c2d63ca1f2eebf868505ed2ba8fd9afe9c Mon Sep 17 00:00:00 2001 From: conrad Date: Sun, 1 Jan 2023 16:09:52 +1000 Subject: [PATCH] simplifications --- include/armadillo_bits/compiler_setup.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/armadillo_bits/compiler_setup.hpp b/include/armadillo_bits/compiler_setup.hpp index dd766ac1..ead6d564 100644 --- a/include/armadillo_bits/compiler_setup.hpp +++ b/include/armadillo_bits/compiler_setup.hpp @@ -421,12 +421,12 @@ #if defined(log2) #undef log2 - #pragma message ("WARNING: detected 'log2' macro and undefined it") + #pragma message ("WARNING: undefined conflicting 'log2' macro") #endif #if defined(check) #undef check - #pragma message ("WARNING: detected 'check' macro and undefined it") + #pragma message ("WARNING: undefined conflicting 'check' macro") #endif // https://sourceware.org/bugzilla/show_bug.cgi?id=19239 @@ -436,6 +436,6 @@ #if defined(min) || defined(max) #undef min #undef max - #pragma message ("WARNING: detected 'min' and/or 'max' macros and undefined them;") + #pragma message ("WARNING: undefined conflicting 'min' and/or 'max' macros;") #pragma message ("WARNING: suggest to define NOMINMAX before including any windows header") #endif