mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-03 17:19:39 +00:00
Fixed a couple more line endings
This commit is contained in:
parent
1ad9b234f0
commit
d03a4c2c7c
3 changed files with 28 additions and 26 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -16,3 +16,5 @@ openmw.cfg
|
|||
Doxygen
|
||||
.thumbnails
|
||||
resources
|
||||
mwcompiler
|
||||
mwinterpreter
|
||||
|
|
|
@ -24,7 +24,7 @@ namespace Compiler
|
|||
/// \brief Exception: EOF condition encountered
|
||||
|
||||
class EOFException : public SourceException
|
||||
{
virtual const char *what() const throw() { return "end of file"; }
|
||||
{ virtual const char *what() const throw() { return "end of file"; }
|
||||
///< Return error message
|
||||
};
|
||||
}
|
||||
|
|
|
@ -35,4 +35,4 @@ namespace Compiler
|
|||
<< " " << message << std::endl;
|
||||
}
|
||||
|
||||
StreamErrorHandler::StreamErrorHandler (std::ostream& ErrorStream) : mStream (ErrorStream) {}
}
|
||||
StreamErrorHandler::StreamErrorHandler (std::ostream& ErrorStream) : mStream (ErrorStream) {}}
|
||||
|
|
Loading…
Reference in a new issue