Browse Source

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>
pull/1705/head
Rafael Sene 2 years ago
committed by GitHub
parent
commit
ef7416ce1d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      disasm/isa_parser.cc

1
disasm/isa_parser.cc

@ -1,4 +1,5 @@
#include "isa_parser.h"
#include <stdexcept>
static std::string strtolower(const char* str)
{

Loading…
Cancel
Save