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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhieuhoang1972 <hieuhoang1972@1f5c12ca-751b-0410-a591-d2e778427230>2007-01-22 19:21:28 +0300
committerhieuhoang1972 <hieuhoang1972@1f5c12ca-751b-0410-a591-d2e778427230>2007-01-22 19:21:28 +0300
commite7838339bb7d53da5bece313a7e98ba4d8add99f (patch)
treeb064d87341a8c8ba1253e7ceb403f9b14044c30a /moses-cmd
parent10074274b9e83ec10a0c72d263c7ed986676f1e0 (diff)
exit/return from main()
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1141 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'moses-cmd')
-rw-r--r--moses-cmd/src/Main.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/moses-cmd/src/Main.cpp b/moses-cmd/src/Main.cpp
index 4c5a4deab..1783d1709 100644
--- a/moses-cmd/src/Main.cpp
+++ b/moses-cmd/src/Main.cpp
@@ -155,10 +155,13 @@ int main(int argc, char* argv[])
delete ioStream;
PrintUserTime("End.");
-//This avoids that detructors are called (it can take a long time)
- exit(EXIT_SUCCESS);
-
-// return EXIT_SUCCESS;
+
+ #ifdef HACK_EXIT
+ //This avoids that detructors are called (it can take a long time)
+ exit(EXIT_SUCCESS);
+ #else
+ return EXIT_SUCCESS;
+ #endif
}
IOStream *GetIODevice(StaticData &staticData)