Reputation: 121
Visual Studio 2015: What does "Suppression State" column in "Error List" window indicate?
Upvotes: 7
Views: 4052
Reputation: 856
It has something to do with Code Analysis. It states if a warning had been suppressed by the #Disable Warning pragma. The state of a warning is either active or suppressed if it's enclosed in a pragma.
There is a good explanation on the MSDN forum:
Upvotes: 5