File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -89,13 +89,9 @@ def write_header(
89
89
+ check_name_camel .upper ()
90
90
+ "_H"
91
91
)
92
- f .write ("//===--- " )
93
- f .write (os .path .basename (filename ))
94
- f .write (" - clang-tidy " )
95
- f .write ("-" * max (0 , 42 - len (os .path .basename (filename ))))
96
- f .write ("*- C++ -*-===//" )
97
92
f .write (
98
93
"""
94
+ //===----------------------------------------------------------------------===//
99
95
//
100
96
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
101
97
// See https://llvm.org/LICENSE.txt for license information.
@@ -145,13 +141,9 @@ def write_implementation(
145
141
filename = os .path .join (module_path , check_name_camel ) + ".cpp"
146
142
print ("Creating %s..." % filename )
147
143
with io .open (filename , "w" , encoding = "utf8" , newline = "\n " ) as f :
148
- f .write ("//===--- " )
149
- f .write (os .path .basename (filename ))
150
- f .write (" - clang-tidy " )
151
- f .write ("-" * max (0 , 51 - len (os .path .basename (filename ))))
152
- f .write ("-===//" )
153
144
f .write (
154
145
"""
146
+ //===----------------------------------------------------------------------===//
155
147
//
156
148
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
157
149
// See https://llvm.org/LICENSE.txt for license information.
You can’t perform that action at this time.
0 commit comments