Suppress warning C4180 STL-wide#84
Merged
BillyONeal merged 1 commit intomicrosoft:masterfrom Sep 11, 2019
CaseyCarter:p201455
Merged
Suppress warning C4180 STL-wide#84BillyONeal merged 1 commit intomicrosoft:masterfrom CaseyCarter:p201455
BillyONeal merged 1 commit intomicrosoft:masterfrom
CaseyCarter:p201455
Conversation
C4180 "qualifier applied to function type has no meaning; ignored" is emitted from `std::remove_reference<T>` when `T` is a function type or reference to such after applying the changes in #82. We could suppress it locally, but the warning is extremely low-value for the STL in general so let's simply suppress it globally.
StephanTLavavej
approved these changes
Sep 10, 2019
barcharcraz
approved these changes
Sep 10, 2019
BillyONeal
approved these changes
Sep 10, 2019
Member
|
Merged since this got auto-completed in the msvc repo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
C4180 "qualifier applied to function type has no meaning; ignored" is emitted from
std::remove_reference<T>whenTis a function type or reference to such after applying the changes in #82. We could suppress it locally, but the warning is extremely low-value for the STL in general so let's simply suppress it globally.[This is a replay of Microsoft-internal PR 201455.]