MCPcopy Index your code
hub / github.com/cpplint/cpplint / EndBlockSuppression

Method EndBlockSuppression

cpplint.py:1015–1019  ·  view source on GitHub ↗

End the current block suppression on `linenum`. inclusive

(self, linenum)

Source from the content-addressed store, hash-verified

1013 self._AddSuppression(category, self._open_block_suppression)
1014
1015 def EndBlockSuppression(self, linenum):
1016 """End the current block suppression on `linenum`. inclusive"""
1017 if self._open_block_suppression:
1018 self._open_block_suppression.end = linenum
1019 self._open_block_suppression = None
1020
1021 def IsSuppressed(self, category, linenum):
1022 """:return: `True` if `category` is suppressed for `linenum`"""

Callers 1

ProcessCategoryFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected