Can I treat a specific warning as an error?

前端 未结 4 989
醉梦人生
醉梦人生 2020-12-06 16:36

The following is a simplified version of a pattern I sometimes see in my students\' code:

bool foobar(int a, int b)
{
    if (a < b) return true;
}


        
相关标签:
4条回答
  • 2020-12-06 17:11

    This should do the trick: #pragma warning (error: 4715).
    Or the /we4715 command line option (see /w, /W0, /W1, /W2, /W3, /W4, /w1, /w2, /w3, /w4, /Wall, /wd, /we, /wo, /Wv, /WX (Warning Level) (courtesy of Tom Sigerdas)).

    0 讨论(0)
  • /we4715 works for me.

    In Visual Studio 2013 anyway, it is in the UI under Project Settings -> Configuration Properties -> C/C++ -> *Advanced *-> Treat Specific Warnings as Errors. Add "4715".

    Docs: http://msdn.microsoft.com/en-us/library/thxezb7y.aspx

    (Please note that this page lists the wrong UI property for VS2013.)

    0 讨论(0)
  • 2020-12-06 17:30

    I added the following to the (VB)project file and it worked:

    <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">  
    <WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,41997</WarningsAsErrors>
    </PropertyGroup>
    
    0 讨论(0)
  • 2020-12-06 17:34

    Set the compiler warning level to level 4 (in Visual Studio) and it will treat all warnings as errors. It is good practice to have your students compile their code with no warnings and no errors anyway :)

    Also, turn on the /WX compiler option.

    0 讨论(0)
提交回复
热议问题