wwylele / teakra

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

test_generator: Enclose internals within anonymous namespaces, also handle file I/O errors #24

Closed lioncash closed 5 years ago

lioncash commented 5 years ago

The internals of test_generator.cpp can be given internal linkage, since they aren't used outside of the translation unit.

Also, previously the test generator would potentially crash if a file handle wasn't able to be opened (since it would use a null file pointer in that case).