]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMath.h
Fix build with GNU libstdc++ C++11 ABI
[lyx.git] / src / mathed / InsetMath.h
index c1b1b05720f00adf3c287a13bf8d94b453b10c77..325f79ae9e200eab0153706a4320a1accd1385b4 100644 (file)
@@ -168,8 +168,6 @@ public:
        /// identifies things that can get \limits or \nolimits
        virtual bool takesLimits() const { return false; }
 
-       /// char char code if possible
-       virtual void handleFont(docstring const &) {}
        /// replace things by other things
        virtual void replace(ReplaceData &) {}
        /// do we contain a given subsequence?
@@ -179,7 +177,10 @@ public:
        /// access to the lock (only nest array have one)
        virtual void lock(bool) {}
 
-       /// write LaTeX and Lyx code
+       // Indicate that we do not want to hide the normal version of
+       // write(). This is to shut off a clang warning.
+       using Inset::write;
+       /// write LaTeX and LyX code
        virtual void write(WriteStream & os) const;
        /// write normalized content
        virtual void normalize(NormalStream &) const;