From e739674388a0ea178244cd637a6d8ba01967a060 Mon Sep 17 00:00:00 2001 From: Pawel Orlowicz <porlowicz@gmail.com> Date: Thu, 14 Feb 2013 13:17:00 +0100 Subject: [PATCH] changed from unordered_set to set --- libwccl/values/strset.h | 4 ++-- tests/data/lex_test.ccl | 2 +- tests/data/string.ccl | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libwccl/values/strset.h b/libwccl/values/strset.h index 5e9defa..ccb38c5 100644 --- a/libwccl/values/strset.h +++ b/libwccl/values/strset.h @@ -36,8 +36,8 @@ class StrSet : public Value public: WCCL_VALUE_PREAMBLE - typedef boost::unordered_set<UnicodeString> value_type; - //typedef std::set<UnicodeString> value_type; + //typedef boost::unordered_set<UnicodeString> value_type; + typedef std::set<UnicodeString> value_type; StrSet() : set_() diff --git a/tests/data/lex_test.ccl b/tests/data/lex_test.ccl index d1d6d5b..8c50245 100644 --- a/tests/data/lex_test.ccl +++ b/tests/data/lex_test.ccl @@ -28,5 +28,5 @@ tagset=nkjp --- [] -["part", "part2", "adv"] +["adv", "part", "part2"] --- diff --git a/tests/data/string.ccl b/tests/data/string.ccl index 7aa3136..1effdc1 100644 --- a/tests/data/string.ccl +++ b/tests/data/string.ccl @@ -14,7 +14,7 @@ upper(["Schlüssel", "ěêĕ"]) --- affix(["pijący", "jedzący", "jedząca", "ca"], -3) -["ąca", "ący", "ca"] +["ca", "ąca", "ący"] --- affix(["ökonomisch", "ökologisch", "oko", "okoń", "ok"], 3) -- GitLab