summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-20 17:46:52 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-20 17:46:52 (GMT)
commit3bda299c6d2efce71d76b44dea8e732a073304f3 (patch)
tree21ee3b186a4997ae13376db812e1c09a0f55a6ac
parenta0666b3ab907c0036f5e3f036b32e9ec5a6e551d (diff)
downloaduscxml-3bda299c6d2efce71d76b44dea8e732a073304f3.zip
uscxml-3bda299c6d2efce71d76b44dea8e732a073304f3.tar.gz
uscxml-3bda299c6d2efce71d76b44dea8e732a073304f3.tar.bz2
Removed std::cout on jsFinalize
-rw-r--r--src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DOM.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DOM.h b/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DOM.h
index 94400e5..122a457 100644
--- a/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DOM.h
+++ b/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DOM.h
@@ -8,7 +8,6 @@
#define V8_DESTRUCTOR(type) \
static void jsDestructor(v8::Persistent<v8::Value> object, void* data) { \
v8::HandleScope handleScope; \
- std::cout << "Deleting type" << std::endl; \
type* thing = static_cast<type*>(v8::Local<v8::External>::Cast(object->ToObject()->GetInternalField(0))->Value()); \
delete thing->arabicaThis; \
delete thing; \