move feature flags to appropriate layer

This commit is contained in:
Nikita Smith
2024-12-10 14:07:51 -08:00
parent 48cb999c3d
commit c91253a19e
5 changed files with 24 additions and 22 deletions
+1 -1
View File
@@ -1274,7 +1274,7 @@ pe_format_debug_directory(Arena *arena, String8List *out, String8 indent, String
}
} break;
case PE_DebugDirectoryType_VC_FEATURE: {
MSVCRT_VCFeatures *feat = str8_deserial_get_raw_ptr(raw_entry, 0, sizeof(*feat));
MSCRT_VCFeatures *feat = str8_deserial_get_raw_ptr(raw_entry, 0, sizeof(*feat));
if (feat) {
coff_printf("Pre-VC++ 11.0: %u", feat->pre_vcpp);
coff_printf("C/C++: %u", feat->c_cpp);