From 5567968baf4d2d4393cbfc854fe2f1a3ca7372c6 Mon Sep 17 00:00:00 2001
From: Adam Radziszewski <adam.radziszewski@pwr.wroc.pl>
Date: Fri, 20 Apr 2012 13:13:21 +0200
Subject: [PATCH] strset as std::set

---
 libwccl/values/strset.h | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/libwccl/values/strset.h b/libwccl/values/strset.h
index 5f2e36a..ad85b1b 100644
--- a/libwccl/values/strset.h
+++ b/libwccl/values/strset.h
@@ -1,18 +1,18 @@
 /*
-    Copyright (C) 2011 Adam Wardyński, Tomasz Śniatowski, Paweł Kędzia,
-    Adam Radziszewski, Bartosz Broda
-    Part of the WCCL project
+	Copyright (C) 2011 Adam Wardyński, Tomasz Śniatowski, Paweł Kędzia,
+	Adam Radziszewski, Bartosz Broda
+	Part of the WCCL project
 
-    This program is free software; you can redistribute it and/or modify it
+	This program is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 3 of the License, or (at your option)
 any later version.
 
-    This program is distributed in the hope that it will be useful, but
+	This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-or FITNESS FOR A PARTICULAR PURPOSE. 
+or FITNESS FOR A PARTICULAR PURPOSE.
 
-    See the LICENSE and COPYING files for more details.
+	See the LICENSE and COPYING files for more details.
 */
 
 #ifndef LIBWCCL_VALUES_STRSET_H
@@ -36,7 +36,8 @@ class StrSet : public Value
 public:
 	WCCL_VALUE_PREAMBLE
 
-	typedef boost::unordered_set<UnicodeString> value_type;
+	//typedef boost::unordered_set<UnicodeString> value_type;
+	typedef std::set<UnicodeString> value_type;
 
 	StrSet()
 		: set_()
-- 
GitLab