Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 19 additions & 6 deletions cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@
'alloc.h',
'builtinbuf.h',
'bvector.h',
# 'complex.h', collides with System C header "complex.h"
# 'complex.h', collides with System C header "complex.h" since C11
'defalloc.h',
'deque.h',
'editbuf.h',
Expand Down Expand Up @@ -455,7 +455,7 @@
'tree.h',
'type_traits.h',
'vector.h',
# 17.6.1.2 C++ library headers
# C++ library headers
'algorithm',
'array',
'atomic',
Expand Down Expand Up @@ -509,9 +509,9 @@
'utility',
'valarray',
'vector',
# 17.6.1.2 C++14 headers
# C++14 headers
'shared_mutex',
# 17.6.1.2 C++17 headers
# C++17 headers
'any',
'charconv',
'codecvt',
Expand All @@ -521,7 +521,7 @@
'optional',
'string_view',
'variant',
# 17.6.1.2 C++20 headers
# C++20 headers
'barrier',
'bit',
'compare',
Expand All @@ -537,7 +537,17 @@
'stop_token',
'syncstream',
'version',
# 17.6.1.2 C++ headers for C library facilities
# C++23 headers
'expected',
'flat_map',
'flat_set',
'generator',
'mdspan',
'print',
'spanstream',
'stacktrace',
'stdfloat',
# C++ headers for C library facilities
'cassert',
'ccomplex',
'cctype',
Expand Down Expand Up @@ -598,6 +608,9 @@
'uchar.h',
'wchar.h',
'wctype.h',
# C23 headers
'stdbit.h',
'stdckdint.h',
# additional POSIX C headers
'aio.h',
'arpa/inet.h',
Expand Down