Skip to content
Snippets Groups Projects
Commit 5567968b authored by Adam Radziszewski's avatar Adam Radziszewski
Browse files

strset as std::set

parent 10bc936c
Branches
No related merge requests found
/*
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_()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment