Browse Source

cmDefinitions::Def: remove custom copy ctor

Daniel Pfeifer 8 years ago
parent
commit
a5d85a31d9
1 changed files with 0 additions and 6 deletions
  1. 0 6
      Source/cmDefinitions.h

+ 0 - 6
Source/cmDefinitions.h

@@ -65,12 +65,6 @@ private:
       , Used(false)
     {
     }
-    Def(Def const& d)
-      : std_string(d)
-      , Exists(d.Exists)
-      , Used(d.Used)
-    {
-    }
     bool Exists;
     bool Used;
   };