Browse Source

fixed constructor indention in JSV8Engine.cpp

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
708affdc38
  1. 6
      libjsengine/JSV8Engine.cpp

6
libjsengine/JSV8Engine.cpp

@ -98,9 +98,9 @@ class JSV8Scope
{ {
public: public:
JSV8Scope(): JSV8Scope():
m_handleScope(), m_handleScope(),
m_context(v8::Context::New(NULL, v8::ObjectTemplate::New())), m_context(v8::Context::New(NULL, v8::ObjectTemplate::New())),
m_contextScope(m_context) m_contextScope(m_context)
{ {
m_context->Enter(); m_context->Enter();
} }

Loading…
Cancel
Save