wwylele / teakra

DSi/3DS DSP emulator, disassembler, assembler, and tester
MIT License
76 stars 19 forks source link

Use <stdexcept> header rather than <exception> #42

Closed Dragios closed 4 years ago

Dragios commented 4 years ago

Fixes error C2039: 'runtime_error': is not a member of 'std'

<exception> defines only the base std::exceptionclass; child classes like std::runtime_error, must include the <stdexcept> header. Further explanation can refer here via stackoverflow