diff --git a/libwccl/values/strset.h b/libwccl/values/strset.h
index 5f2e36a62ab89c2456535c0723440dc2ee09ce04..ad85b1b9b09d909075ad780babaf3b0b17e4729b 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_()