Fix compilation on Windows

DEBUG macro from miniupnpc interferring with enum Trace::DEBUG;
This commit is contained in:
Grant Limberg 2018-01-10 15:23:48 -08:00
parent 57077e4607
commit 406bcf7d3f
2 changed files with 22 additions and 22 deletions

View file

@ -70,11 +70,11 @@ public:
*/
enum Level
{
NORMAL = 0,
VERBOSE = 10,
RULES = 15,
DEBUG = 20,
INSANE = 30
LEVEL_NORMAL = 0,
LEVEL_VERBOSE = 10,
LEVEL_RULES = 15,
LEVEL_DEBUG = 20,
LEVEL_INSANE = 30
};
/**