Skip to content
Snippets Groups Projects
Commit 587c19dc authored by Shon Ferguson's avatar Shon Ferguson
Browse files

Didn't need that new constructor after all.

parent e9321fc4
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,6 @@ All rights reserved. Please see niflib.h for licence. */ ...@@ -9,7 +9,6 @@ All rights reserved. Please see niflib.h for licence. */
*/ */
template <class T> class Ref { template <class T> class Ref {
public: public:
Ref();
Ref( T * object = NULL ); Ref( T * object = NULL );
Ref(const Ref & ref_to_copy ); Ref(const Ref & ref_to_copy );
~Ref(); ~Ref();
...@@ -33,9 +32,6 @@ protected: ...@@ -33,9 +32,6 @@ protected:
T* _object; T* _object;
}; };
template <class T>
Ref<T>::Ref() : _object(NULL) {}
template <class T> template <class T>
Ref<T>::Ref( T * object ) : _object(object) {} Ref<T>::Ref( T * object ) : _object(object) {}
......
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