File tree Expand file tree Collapse file tree 4 files changed +1
-3
lines changed Expand file tree Collapse file tree 4 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ sure you don't forget anything:
156
156
- Did you add all new named declarations to the ``std `` module?
157
157
- If you added a header:
158
158
159
- - Did you add it to ``include/module.modulemap.in ``?
159
+ - Did you add it to ``include/module.modulemap ``?
160
160
- Did you add it to ``include/CMakeLists.txt ``?
161
161
- If it's a public header, did you update ``utils/libcxx/header_information.py ``?
162
162
Original file line number Diff line number Diff line change @@ -1023,7 +1023,6 @@ foreach(feature LIBCXX_ENABLE_FILESYSTEM LIBCXX_ENABLE_LOCALIZATION LIBCXX_ENABL
1023
1023
endforeach ()
1024
1024
1025
1025
configure_file ("__config_site.in" "${LIBCXX_GENERATED_INCLUDE_TARGET_DIR} /__config_site" @ONLY )
1026
- configure_file ("module.modulemap.in" "${LIBCXX_GENERATED_INCLUDE_DIR} /module.modulemap" @ONLY )
1027
1026
configure_file ("${LIBCXX_ASSERTION_HANDLER_FILE} " "${LIBCXX_GENERATED_INCLUDE_DIR} /__assertion_handler" COPYONLY )
1028
1027
1029
1028
set (_all_includes "${LIBCXX_GENERATED_INCLUDE_TARGET_DIR} /__config_site"
File renamed without changes.
Original file line number Diff line number Diff line change 155
155
def is_header (file ):
156
156
"""Returns whether the given file is a header (i.e. not a directory or the modulemap file)."""
157
157
return not file .is_dir () and not file .name in [
158
- "module.modulemap.in" ,
159
158
"module.modulemap" ,
160
159
"CMakeLists.txt" ,
161
160
"libcxx.imp" ,
You can’t perform that action at this time.
0 commit comments