summaryrefslogtreecommitdiff
path: root/buildscripts/quickcpplint.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/quickcpplint.py')
-rwxr-xr-xbuildscripts/quickcpplint.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/buildscripts/quickcpplint.py b/buildscripts/quickcpplint.py
index 9ec6188a825..df75a40d8ad 100755
--- a/buildscripts/quickcpplint.py
+++ b/buildscripts/quickcpplint.py
@@ -26,8 +26,7 @@ def is_interesting_file(file_name: str) -> bool:
or file_name.startswith("src") and not file_name.startswith("src/third_party/")
and not file_name.startswith("src/mongo/gotools/")
# TODO SERVER-49805: These files should be generated at compile time.
- and not file_name == "src/mongo/db/cst/pipeline_parser_gen.cpp" and
- not file_name == "src/mongo/db/cst/location_gen.h") and FILES_RE.search(file_name)
+ and not file_name == "src/mongo/db/cst/parser_gen.cpp") and FILES_RE.search(file_name)
def _lint_files(file_names: List[str]) -> None: