]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inferinset.C
small up/down tweaking
[lyx.git] / src / mathed / math_inferinset.C
index 61d49081f6e6d347aa130b95bc1ce76177a7ff3d..f25f8ee6b8599b8889f1ef92a131017e1a605aa8 100644 (file)
@@ -9,9 +9,6 @@
 #include "textpainter.h"
 
 
-using std::max;
-
-
 MathInferInset::MathInferInset()
        : MathGridInset(1, 1)
 {}
@@ -37,8 +34,6 @@ void MathInferInset::write(WriteStream & os) const
 {
        os << "\\infer";
        if (opt_.size())
-               os << "[" << opt_ << "]";
+               os << '[' << opt_ << ']';
        MathGridInset::write(os);
 }
-
-