| ... | @@ -4658,7 +4658,6 @@ int parse_h_file(ImportTableEntry *import, ZigList<ErrorMsg *> *errors, const ch | ... | @@ -4658,7 +4658,6 @@ int parse_h_file(ImportTableEntry *import, ZigList<ErrorMsg *> *errors, const ch |
| 4658 | | 4658 | |
| 4659 | std::shared_ptr<PCHContainerOperations> pch_container_ops = std::make_shared<PCHContainerOperations>(); | 4659 | std::shared_ptr<PCHContainerOperations> pch_container_ops = std::make_shared<PCHContainerOperations>(); |
| 4660 | | 4660 | |
| 4661 | bool skip_function_bodies = false; | | |
| 4662 | bool only_local_decls = true; | 4661 | bool only_local_decls = true; |
| 4663 | bool capture_diagnostics = true; | 4662 | bool capture_diagnostics = true; |
| 4664 | bool user_files_are_volatile = true; | 4663 | bool user_files_are_volatile = true; |
| ... | @@ -4671,7 +4670,7 @@ int parse_h_file(ImportTableEntry *import, ZigList<ErrorMsg *> *errors, const ch | ... | @@ -4671,7 +4670,7 @@ int parse_h_file(ImportTableEntry *import, ZigList<ErrorMsg *> *errors, const ch |
| 4671 | &clang_argv.at(0), &clang_argv.last(), | 4670 | &clang_argv.at(0), &clang_argv.last(), |
| 4672 | pch_container_ops, diags, resources_path, | 4671 | pch_container_ops, diags, resources_path, |
| 4673 | only_local_decls, capture_diagnostics, None, true, 0, TU_Complete, | 4672 | only_local_decls, capture_diagnostics, None, true, 0, TU_Complete, |
| 4674 | false, false, allow_pch_with_compiler_errors, skip_function_bodies, | 4673 | false, false, allow_pch_with_compiler_errors, SkipFunctionBodiesScope::None, |
| 4675 | single_file_parse, user_files_are_volatile, for_serialization, None, &err_unit, | 4674 | single_file_parse, user_files_are_volatile, for_serialization, None, &err_unit, |
| 4676 | nullptr)); | 4675 | nullptr)); |
| 4677 | | 4676 | |