mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
add missing std::
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6131 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4387747ba1
commit
b28c0da9ea
@ -84,7 +84,7 @@ private:
|
||||
CatCode cat_;
|
||||
};
|
||||
|
||||
ostream & operator<<(ostream & os, Token const & t);
|
||||
std::ostream & operator<<(std::ostream & os, Token const & t);
|
||||
|
||||
|
||||
//
|
||||
@ -95,7 +95,7 @@ class Parser {
|
||||
|
||||
public:
|
||||
///
|
||||
Parser(istream & is);
|
||||
Parser(std::istream & is);
|
||||
|
||||
///
|
||||
int lineno() const { return lineno_; }
|
||||
@ -111,7 +111,7 @@ public:
|
||||
///
|
||||
void error(string const & msg);
|
||||
///
|
||||
void tokenize(istream & is);
|
||||
void tokenize(std::istream & is);
|
||||
///
|
||||
void push_back(Token const & t);
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user