Skip to content
Snippets Groups Projects
Commit 11d0a6e7 authored by Lioncash's avatar Lioncash
Browse files

General: Catch more expressions with no effect on MSVC

MSVC lets us fine-tune catching expressions with no side-effects a
little more.
parent 26547d3e
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,10 @@ if (MSVC)
# Warnings
/W3
/we4547 # 'operator' : operator before comma has no effect; expected operator with side-effect
/we4548 # Expression before comma has no effect; expected expression with side-effect
/we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'?
/we4555 # Expression has no effect; expected expression with side-effect
/we4834 # Discarding return value of function with 'nodiscard' attribute
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment