Skip to content

Commit 7fbdb14

Browse files
committed
hear
1 parent ec2d5fd commit 7fbdb14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/utils/libcxx/header_information.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def is_header(file):
162162

163163

164164
def is_public_header(header):
165-
return not header.startswith("__")
165+
return "__" not in header and not header.startswith("ext/")
166166

167167

168168
def is_modulemap_header(header):

0 commit comments

Comments
 (0)