How to increase error limit in Visual Studio?

前端 未结 5 1892
再見小時候
再見小時候 2020-12-06 15:58

When building an application in Visual Studio. It shows the following error when exceeding the error count

    fatal error C1003: error count exceeds 100; sto         


        
5条回答
  •  广开言路
    2020-12-06 16:51

    I don't think so. VS basically reports all errors it encounters during compilations. There might be some erroneous parts of the code that make the compiler getting caught in an infinite "error" loop.

    The limit was implemented to avoid that. In most cases the 100 errors you get are just the same error reported over and over again. What would be the sense in increasing the number of repetitions?

    Maybe you can post the code snippet where the error occurs first, so we can help you fix it.

提交回复
热议问题