Browse Source

Merge pull request #928 from hungrymonkey/fix_ref_bug

Fixes a bug in the example code in object type. Ref<MyReference> myre…
Rémi Verschelde 7 years ago
parent
commit
97a3b83f7a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      development/cpp/object_class.rst

+ 1 - 1
development/cpp/object_class.rst

@@ -242,7 +242,7 @@ Declaring them must be done using Ref<> template. For example:
         GDCLASS(MyReference, Reference);
         GDCLASS(MyReference, Reference);
     };
     };
 
 
-    Ref<MyReference> myref = memnew(MyReference);
+    Ref<MyReference> myref(memnew(MyReference));
 
 
 ``myref`` is reference counted. It will be freed when no more Ref<>
 ``myref`` is reference counted. It will be freed when no more Ref<>
 templates point to it.
 templates point to it.