Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mgiza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mgizapp/src/myassert.cpp')
-rw-r--r--mgizapp/src/myassert.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/mgizapp/src/myassert.cpp b/mgizapp/src/myassert.cpp
index 2d49be8..26ef8f5 100644
--- a/mgizapp/src/myassert.cpp
+++ b/mgizapp/src/myassert.cpp
@@ -5,15 +5,15 @@
#ifndef STANDARD_ASSERT
void myerror(int line,const char *file,const char *expression)
{
- cerr << "(general.h):Assertion failed: '" << expression << "' ::: b "
- << file << ":" << line << endl;
- cout << "(general.h):Assertion failed: '" << expression << "' ::: b "
- << file << ":" << line << endl;
+ cerr << "(general.h):Assertion failed: '" << expression << "' ::: b "
+ << file << ":" << line << endl;
+ cout << "(general.h):Assertion failed: '" << expression << "' ::: b "
+ << file << ":" << line << endl;
}
void imyerror(int line,const char *file,const char *expression)
{
- cerr << "Error: '" << expression << "' ::: in Source " << file
- << ":" << line << endl;
+ cerr << "Error: '" << expression << "' ::: in Source " << file
+ << ":" << line << endl;
}
#endif