bbbradsmith / nsfplay

Nintendo NES sound file NSF music player
https://bbbradsmith.github.io/nsfplay/
279 stars 43 forks source link

Added needed #include<stdexcept> for std::out_of_range. #13

Closed rwtodd closed 5 years ago

rwtodd commented 5 years ago

When I tried to build in VS2019 against a Win10 target+build tools, I got errors about std::out_of_range, so I added the needed #include of stdexcept to vcm.h. Probably on whatever toolchain you use, it was getting pulled in via an existing #include. The solution builds cleanly for me with this change.

bbbradsmith commented 5 years ago

Thanks!