]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Parser.h
InsetLine.cpp: remove unused include
[lyx.git] / src / tex2lyx / Parser.h
index ed2c7211ebfec3baba86ab3fa5a136595519f1f8..af4e030a29c268a4c2571219984ce44963327443 100644 (file)
@@ -77,14 +77,12 @@ public:
        ///
        Token(docstring const & cs, CatCode cat) : cs_(to_utf8(cs)), cat_(cat) {}
 
-       ///
+       /// Returns the token as string
        std::string const & cs() const { return cs_; }
        /// Returns the catcode of the token
        CatCode cat() const { return cat_; }
        ///
        char character() const { return cs_.empty() ? 0 : cs_[0]; }
-       /// Returns the token as string
-       std::string asString() const;
        /// Returns the token verbatim
        std::string asInput() const;