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
path: root/symal
diff options
context:
space:
mode:
authorJeroen Vermeulen <jtv@precisiontranslationtools.com>2015-05-18 09:52:09 +0300
committerJeroen Vermeulen <jtv@precisiontranslationtools.com>2015-05-18 09:52:09 +0300
commitb085ca542d6a4396512e04d5ebf96296b2ea0650 (patch)
tree8f8a5d11ff925a5b94fa6b0d7cfb007b6c57de28 /symal
parent5aa70c6cddc8111e00010d33a85a6e04a8aa0d74 (diff)
Oops, that's a null pointer not a nul character.
Diffstat (limited to 'symal')
-rw-r--r--symal/symal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/symal/symal.cpp b/symal/symal.cpp
index e1108d236..c56f5a514 100644
--- a/symal/symal.cpp
+++ b/symal/symal.cpp
@@ -28,7 +28,7 @@ enum Alignment {
TGTTOSRC,
};
-const Enum_T END_ENUM = {'\0', 0};
+const Enum_T END_ENUM = {0, 0};
namespace
{