Skip to content

Commit

Permalink
wmake: Prevent Clang warning about Foam::move vs std::move
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Bainbridge committed Apr 12, 2023
1 parent 1e0c4cd commit 33fc672
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wmake/rules/linux64Clang/c++
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion wmake/rules/linuxClang/c++
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 33fc672

Please sign in to comment.