Exemple #1
0
void ErrorLogger::PrintErrorAtLocation(ErrorType eType, const SourceLocation& srcLoc)
{
    std::cerr << mErrorMessages[eType] << " at line " << srcLoc.GetCurrentLine() << ", column " << srcLoc.GetCurrentColumn() << std::endl;
}