]> git.mxchange.org Git - flightgear.git/blobdiff - src/Include/auto_ptr.hxx
Updated adf property names.
[flightgear.git] / src / Include / auto_ptr.hxx
index 732129227d40756ed4ba663728e2f0352cdddc13..3ed71b72a6a4a4699fa3f213a34052badd9cdf05 100644 (file)
@@ -45,7 +45,7 @@ public:
        a.owns = 0;
     }
 
-#ifdef _FG_MEMBER_TEMPLATES
+#ifdef _SG_MEMBER_TEMPLATES
     template <class T> auto_ptr(const auto_ptr<T>& a)
        : ptr(a.ptr), owns(a.owns) {
        a.owns = 0;
@@ -62,7 +62,7 @@ public:
        }
     }
 
-#ifdef _FG_MEMBER_TEMPLATES
+#ifdef _SG_MEMBER_TEMPLATES
     template <class T> auto_ptr& operator = (const auto_ptr<T>& a) {
        if (&a != this) {
            if (owns)