1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Banishes redefined macro warning.

This commit is contained in:
Thomas Harte 2020-01-01 12:38:30 -05:00
parent 90b899c00e
commit 153f60735d

View File

@ -11,8 +11,11 @@
#include <algorithm> #include <algorithm>
#include <cstring> #include <cstring>
#define LOG_PREFIX "[MFP] " #ifndef NDEBUG
#define NDEBUG #define NDEBUG
#endif
#define LOG_PREFIX "[MFP] "
#include "../../Outputs/Log.hpp" #include "../../Outputs/Log.hpp"
using namespace Motorola::MFP68901; using namespace Motorola::MFP68901;