aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flxlet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/source/flxlet.cpp')
-rwxr-xr-xexternals/grill/flext/source/flxlet.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/externals/grill/flext/source/flxlet.cpp b/externals/grill/flext/source/flxlet.cpp
index 881769da..c360daf3 100755
--- a/externals/grill/flext/source/flxlet.cpp
+++ b/externals/grill/flext/source/flxlet.cpp
@@ -17,7 +17,6 @@ WARRANTIES, see the file, "license.txt," in this distribution.
#include <string.h>
#include <stdarg.h>
-//namespace flext {
flext_base::xlet::xlet(type t,const char *d):
tp(t),nxt(NULL)
@@ -60,7 +59,7 @@ unsigned long flext_base::XletCode(xlet::type tp,...)
int cnt = 0;
xlet::type *args = NULL,arg = tp;
for(; arg; ++cnt) {
-#ifdef _DEBUG
+#ifdef FLEXT_DEBUG
if(cnt > 9) {
error("%s - Too many in/outlets defined - truncated to 9",thisName());
break;
@@ -85,4 +84,3 @@ void flext_base::AddOutlets(unsigned long code)
for(; code; code /= 10) AddOutlet((xlet::type)(code%10));
}
-//} // namespace flext