From f43972d665c95b2148636c86a5b648e719901101 Mon Sep 17 00:00:00 2001 From: B Stack Date: Sun, 12 May 2019 16:34:13 -0400 Subject: 10.12 --- zen/zstring.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'zen/zstring.h') diff --git a/zen/zstring.h b/zen/zstring.h index 42487670..d5a8c29b 100644 --- a/zen/zstring.h +++ b/zen/zstring.h @@ -66,7 +66,7 @@ struct LessNativePath { bool operator()(const Zstring& lhs, const Zstring& rhs) //------------------------------------------------------------------------------------------ int compareNatural(const Zstring& lhs, const Zstring& rhs); -struct LessNaturalSort { bool operator()(const Zstring& lhs, const Zstring rhs) const { return compareNatural(lhs, rhs) < 0; } }; +struct LessNaturalSort { bool operator()(const Zstring& lhs, const Zstring& rhs) const { return compareNatural(lhs, rhs) < 0; } }; //------------------------------------------------------------------------------------------ @@ -148,4 +148,8 @@ const wchar_t MULT_SIGN = L'\u00D7'; //fancy "x" //ZEN macro consistency checks: +#if defined ZEN_WIN_PRE_VISTA || defined ZEN_WIN_VISTA_AND_LATER + #error these macros are obsolete! +#endif + #endif //ZSTRING_H_73425873425789 -- cgit