def CheckEnd()

in cpplint.py [0:0]


    def CheckEnd(self, filename, clean_lines, linenum, error):
        # If there is a DISALLOW macro, it should appear near the end of
        # the class.
        seen_last_thing_in_class = False
        for i in xrange(linenum - 1, self.starting_linenum, -1):
            match = Search(
                r'\b(DISALLOW_COPY_AND_ASSIGN|DISALLOW_IMPLICIT_CONSTRUCTORS)\(' +
                self.name + r'\)',
                clean_lines.elided[i])
            if match:
                if seen_last_thing_in_class:
                    error(filename, i, 'readability/constructors', 3,
                          match.group(1) + ' should be the last thing in the class')
                break

            if not Match(r'^\s*$', clean_lines.elided[i]):
                seen_last_thing_in_class = True

        # Check that closing brace is aligned with beginning of the class.
        # Only do this if the closing brace is indented by only whitespaces.
        # This means we will not check single-line class definitions.
        indent = Match(r'^( *)\}', clean_lines.elided[linenum])
        if indent and len(indent.group(1)) != self.class_indent:
            if self.is_struct:
                parent = 'struct ' + self.name
            else:
                parent = 'class ' + self.name
            error(filename, linenum, 'whitespace/indent', 3,
                  'Closing brace should be aligned with beginning of %s' % parent)