From 587c19dc270f09c5bb6f6d85dca6ff8d276e90ef Mon Sep 17 00:00:00 2001 From: Shon Ferguson <shonferg@users.sourceforge.net> Date: Tue, 30 May 2006 04:19:33 +0000 Subject: [PATCH] Didn't need that new constructor after all. --- obj/Ref.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/obj/Ref.h b/obj/Ref.h index 35e16fad..36144b97 100644 --- a/obj/Ref.h +++ b/obj/Ref.h @@ -9,7 +9,6 @@ All rights reserved. Please see niflib.h for licence. */ */ template <class T> class Ref { public: - Ref(); Ref( T * object = NULL ); Ref(const Ref & ref_to_copy ); ~Ref(); @@ -33,9 +32,6 @@ protected: T* _object; }; -template <class T> -Ref<T>::Ref() : _object(NULL) {} - template <class T> Ref<T>::Ref( T * object ) : _object(object) {} -- GitLab