Index: Source/bindings/templates/dictionary_impl.h |
diff --git a/Source/bindings/templates/dictionary_impl.h b/Source/bindings/templates/dictionary_impl.h |
index 491159ca8eced910248a79dca4fe7c1c1fe1121b..8e2364f8634cd5bb3b76dfeb137fc83a5a0b25a2 100644 |
--- a/Source/bindings/templates/dictionary_impl.h |
+++ b/Source/bindings/templates/dictionary_impl.h |
@@ -23,7 +23,7 @@ public: |
{% for member in members %} |
bool {{member.has_method_name}}() const { return {{member.has_method_expression}}; } |
{{member.rvalue_cpp_type}} {{member.name}}() const { return {{member.getter_expression}}; } |
- void {{member.setter_name}}({{member.rvalue_cpp_type}} value) { m_{{member.name}} = value;} |
+ void {{member.setter_name}}({{member.rvalue_cpp_type}} value) { m_{{member.name}} = value; } |
bashi
2014/08/15 16:39:39
small style correction.
|
{% endfor %} |
void trace(Visitor*); |