diff -r 096d83158d41 -r 81b47fc5c444 lemon/error.h --- a/lemon/error.h Fri Mar 02 17:56:22 2007 +0000 +++ b/lemon/error.h Fri Mar 02 18:04:28 2007 +0000 @@ -126,15 +126,15 @@ ErrorMessage(const ErrorMessage& em) throw() : buf(em.buf) { } ///\e - ErrorMessage(const char *message) throw() { + ErrorMessage(const char *msg) throw() { init(); - *this << message; + *this << msg; } ///\e - ErrorMessage(const std::string &message) throw() { + ErrorMessage(const std::string &msg) throw() { init(); - *this << message; + *this << msg; } ///\e @@ -266,11 +266,11 @@ : _message(the_message), _line(line_num) { file(file_name); } ///\e - void line(int line) { _line = line; } + void line(int ln) { _line = ln; } ///\e - void message(const std::string& message) { _message.set(message); } + void message(const std::string& msg) { _message.set(msg); } ///\e - void file(const std::string &file) { _file.set(file); } + void file(const std::string &fl) { _file.set(fl); } ///\e int line() const { return _line; } @@ -329,12 +329,12 @@ IoError(foe), _file(foe._file) {} ///\e - explicit FileOpenError(const std::string& file) - : _file(file) {} + explicit FileOpenError(const std::string& fl) + : _file(fl) {} ///\e - void file(const std::string &file) { _file.set(file); } + void file(const std::string &fl) { _file.set(fl); } /// \brief Returns the filename. /// @@ -382,9 +382,9 @@ : _message(the_message), _file(file_name) {} ///\e - void message(const std::string& message) { _message.set(message); } + void message(const std::string& msg) { _message.set(msg); } ///\e - void file(const std::string &file) { _file.set(file); } + void file(const std::string &fl) { _file.set(fl); } ///\e const char* message() const {