cpplint: do not break build for style warnings

This commit is contained in:
Sébastien Rombauts 2015-04-20 20:51:09 +02:00
parent 5ec39df7e0
commit 170fdd55c7

3
cpplint.py vendored
View File

@ -4784,7 +4784,8 @@ def main():
ProcessFile(filename, _cpplint_state.verbose_level)
_cpplint_state.PrintErrorCounts()
sys.exit(_cpplint_state.error_count > 0)
# SRombauts: do not break build for cpplint style warnings
#sys.exit(_cpplint_state.error_count > 0)
if __name__ == '__main__':