From 458577aaee289d4a30a3781536776d0f74397e42 Mon Sep 17 00:00:00 2001 From: Sajid Date: Sun, 8 Sep 2024 08:40:52 +0600 Subject: [PATCH] Remove manual map --- PowerAnalyse/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerAnalyse/main.cpp b/PowerAnalyse/main.cpp index fa45726..2def108 100644 --- a/PowerAnalyse/main.cpp +++ b/PowerAnalyse/main.cpp @@ -12,7 +12,7 @@ int main() image.symbols.emplace(section.name, section.base, section.size, Symbol_Section); } - image.symbols.emplace("_start", image.entry_point, 0x30, Symbol_Function); + // image.symbols.emplace("_start", image.entry_point, 0x30, Symbol_Function); for (const auto& section : image.sections) {