wmake: Prevent Clang warning about Foam::move vs std::move

This commit is contained in:
Will Bainbridge
2023-04-12 11:30:32 +01:00
parent 1e0c4cd7f5
commit 33fc67203a
2 changed files with 2 additions and 2 deletions

View File

@ -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 \

View File

@ -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 \