]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_atom.C
to much stuff for my liking...
[features.git] / src / mathed / math_atom.C
index 068a2943aa73a2a5fae7d7bcfba298f6ff0a4cfe..0e70a9b043ab4b38e0ace37a8225cf8badcd6179 100644 (file)
 
 #include <utility>
 
+
+using std::swap;
+
+
 MathAtom::MathAtom()
        : nucleus_(0)
 {}
@@ -44,7 +48,7 @@ void MathAtom::operator=(MathAtom const & p)
        if (&p == this)
                return;
        MathAtom tmp(p);
-       std::swap(tmp.nucleus_, nucleus_);
+       swap(tmp.nucleus_, nucleus_);
 }