Imported Upstream version 17.21.0
[platform/upstream/libzypp.git] / zypp / Pathname.h
index 09d37d0..d387807 100644 (file)
@@ -1,3 +1,4 @@
+
 /*---------------------------------------------------------------------\
 |                          ____ _   __ __ ___                          |
 |                         |__  / \ / / . \ . \                         |
@@ -66,12 +67,12 @@ namespace zypp
        using std::swap;
        swap( lhs._name, rhs._name );
       }
-#ifndef SWIG // Swig treats it as syntax error
+
       /** Move Ctor */
       Pathname( Pathname && tmp )
       : _name( std::move( tmp._name ) )
       {}
-#endif
+
       /** Assign */
       Pathname & operator=( Pathname rhs )
       { swap( *this, rhs ); return *this; }