]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_inferinset.C
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_inferinset.C
index 61d49081f6e6d347aa130b95bc1ce76177a7ff3d..5148d0e952c122ec8ee78916ed48624b76b51e16 100644 (file)
@@ -1,6 +1,3 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_inferinset.h"
 #include "math_support.h"
@@ -9,9 +6,6 @@
 #include "textpainter.h"
 
 
-using std::max;
-
-
 MathInferInset::MathInferInset()
        : MathGridInset(1, 1)
 {}
@@ -37,8 +31,6 @@ void MathInferInset::write(WriteStream & os) const
 {
        os << "\\infer";
        if (opt_.size())
-               os << "[" << opt_ << "]";
+               os << '[' << opt_ << ']';
        MathGridInset::write(os);
 }
-
-