From 548315acd9936fb0352281032f414639508560f3 Mon Sep 17 00:00:00 2001 From: Scott Beamer Date: Mon, 23 Sep 2013 15:49:23 -0700 Subject: fixes compile bug for not being able to find std::logic_error --- riscv/processor.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/riscv/processor.cc b/riscv/processor.cc index 2bd2155..839c846 100644 --- a/riscv/processor.cc +++ b/riscv/processor.cc @@ -12,6 +12,7 @@ #include #include #include +#include processor_t::processor_t(sim_t* _sim, mmu_t* _mmu, uint32_t _id) : sim(_sim), mmu(_mmu), ext(NULL), id(_id), opcode_bits(0) -- cgit v1.1