From ef7416ce1d3e4511fe7fd6f4568edbbee25a0830 Mon Sep 17 00:00:00 2001 From: Rafael Sene Date: Sat, 22 Jun 2024 11:26:41 -0300 Subject: Fix: Add missing header for std::logic_error - Included in isa_parser.cc to resolve compilation error due to missing type 'std::logic_error'. Signed-off-by: Rafael Sene --- disasm/isa_parser.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/disasm/isa_parser.cc b/disasm/isa_parser.cc index cba5516..e37b72f 100644 --- a/disasm/isa_parser.cc +++ b/disasm/isa_parser.cc @@ -1,4 +1,5 @@ #include "isa_parser.h" +#include static std::string strtolower(const char* str) { -- cgit v1.1