From 35d66c68cc8229badc23c6953d42ff99cb53c9d1 Mon Sep 17 00:00:00 2001 From: jli0827 Date: Wed, 18 Dec 2024 17:20:28 +0800 Subject: [PATCH] The bug fix of enum line_str not handled --- dwarf/to_string.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/dwarf/to_string.cc b/dwarf/to_string.cc index bb96b4b..69e8984 100644 --- a/dwarf/to_string.cc +++ b/dwarf/to_string.cc @@ -14,6 +14,7 @@ to_string(section_type v) case section_type::frame: return "section_type::frame"; case section_type::info: return "section_type::info"; case section_type::line: return "section_type::line"; + case section_type::line_str: return "section_type::line_str"; case section_type::loc: return "section_type::loc"; case section_type::macinfo: return "section_type::macinfo"; case section_type::pubnames: return "section_type::pubnames"; -- Gitee