Index: compiled/debug.h |
diff --git a/compiled/debug.h b/compiled/debug.h |
index b0447b3e436b9258890927bd43eb4aa85db2b110..873fa56402fb2d1621c76af1085947b109094396 100644 |
--- a/compiled/debug.h |
+++ b/compiled/debug.h |
@@ -46,14 +46,13 @@ struct console_type |
} |
}; |
-static console_type console; |
ABP_NS_END |
#if defined(DEBUG) |
inline void assert2(bool condition, const String& str) |
{ |
if (!condition) |
- ABP_NS::console.error(str); |
+ ABP_NS::console_type::error(str); |
} |
#else |
#define assert2(condition, str) |