Skip to content
Snippets Groups Projects
Commit a310a674 authored by Amorilia's avatar Amorilia
Browse files

Updated generated code; except for NiObject, NiObjectNET, and NiAVObject classes.

parent 2897b089
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ protected:
};
template <class T>
Ref<T>::Ref( T * object = NULL ) : _object(object) {}
Ref<T>::Ref( T * object ) : _object(object) {}
template <class T>
Ref<T>::Ref(const Ref & ref_to_copy ) {
......@@ -135,4 +135,4 @@ bool Ref<T>::operator!=(const Ref & ref) const {
return ( _object != ref._object );
}
#endif
\ No newline at end of file
#endif
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment