]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_parser.C
change "support/std_sstream.h" to <sstream>
[features.git] / src / mathed / math_parser.C
index f5fd3960691ea0190b722a019ed5b5dba84e9cf4..0264350e87bb209ba58a9a910fb9f919be713e43 100644 (file)
@@ -62,9 +62,10 @@ following hack as starting point to write some macros:
 #include "ref_inset.h"
 
 #include "lyxlex.h"
-#include "support/std_sstream.h"
 #include "debug.h"
 
+#include <sstream>
+
 #ifndef CXX_GLOBAL_CSTD
 using std::atoi;
 #endif
@@ -191,7 +192,6 @@ ostream & operator<<(ostream & os, Token const & t)
 
 
 class Parser {
-
 public:
        ///
        typedef  MathInset::mode_type mode_type;
@@ -1283,6 +1283,3 @@ void initParser()
        theCatcode[int('~')]  = catActive;
        theCatcode[int('%')]  = catComment;
 }
-
-
-