Skip to content

Commit ef7416c

Browse files
authored
Fix: Add missing <stdexcept> header for std::logic_error
- Included <stdexcept> in isa_parser.cc to resolve compilation error due to missing type 'std::logic_error'. Signed-off-by: Rafael Sene <rafael@riscv.org>
1 parent f03e97c commit ef7416c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

disasm/isa_parser.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include "isa_parser.h"
2+
#include <stdexcept>
23

34
static std::string strtolower(const char* str)
45
{

0 commit comments

Comments
 (0)