error C2065: 'not': undeclared identifier

This commit is contained in:
Roman Telezhynskyi 2023-08-08 16:55:59 +03:00
parent d4859b7604
commit 73c35c4b2a

View file

@ -25,6 +25,11 @@
#include <QCoreApplication>
#include <QLocale>
// Header <ciso646> is removed in C++20.
#if __cplusplus <= 201703L
#include <ciso646> // and, not, or
#endif
namespace qmu
{