From 33fc67203a357efb56849532216c119fb1885e10 Mon Sep 17 00:00:00 2001 From: Will Bainbridge Date: Wed, 12 Apr 2023 11:30:32 +0100 Subject: [PATCH] wmake: Prevent Clang warning about Foam::move vs std::move --- wmake/rules/linux64Clang/c++ | 2 +- wmake/rules/linuxClang/c++ | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wmake/rules/linux64Clang/c++ b/wmake/rules/linux64Clang/c++ index 57b0aee6a5..fe76c92623 100644 --- a/wmake/rules/linux64Clang/c++ +++ b/wmake/rules/linux64Clang/c++ @@ -2,7 +2,7 @@ SUFFIXES += .C c++WARN = -Wall -Wextra -Wold-style-cast -Wnon-virtual-dtor \ -Wno-unused-parameter -Wno-invalid-offsetof \ - -Wno-undefined-var-template + -Wno-undefined-var-template -Wno-unqualified-std-cast-call # Suppress some warnings for flex++ c++LESSWARN = -Wno-old-style-cast -Wno-unused-local-typedefs \ diff --git a/wmake/rules/linuxClang/c++ b/wmake/rules/linuxClang/c++ index 1f5c47fa88..f76912152b 100644 --- a/wmake/rules/linuxClang/c++ +++ b/wmake/rules/linuxClang/c++ @@ -2,7 +2,7 @@ SUFFIXES += .C c++WARN = -Wall -Wextra -Wold-style-cast -Wnon-virtual-dtor \ -Wno-unused-parameter -Wno-invalid-offsetof \ - -Wno-undefined-var-template + -Wno-undefined-var-template -Wno-unqualified-std-cast-call # Suppress some warnings for flex++ c++LESSWARN = -Wno-old-style-cast -Wno-unused-local-typedefs \