From a47b01da9e61a6f5ce5d21b408d58b6ee6f97639 Mon Sep 17 00:00:00 2001 From: Amlal Date: Sat, 9 Aug 2025 21:14:14 +0200 Subject: fix: remove useless char_type typedef. --- dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/CompilerKit/src') diff --git a/dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc b/dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc index 2d149df..c1b72f9 100644 --- a/dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc +++ b/dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc @@ -263,7 +263,7 @@ NECTI_MODULE(DynamicLinker64PEF) { pef_container.Count = cnt; - char_type* raw_ae_records = new char_type[cnt * sizeof(CompilerKit::AERecordHeader)]; + Char* raw_ae_records = new Char[cnt * sizeof(CompilerKit::AERecordHeader)]; if (!raw_ae_records) { if (kVerbose) kConsoleOut << "allocation failed for records of count: " << cnt << "\n"; -- cgit v1.2.3