Compiles with C++11 now. Used words now contains 4bytes-numbers

This commit is contained in:
2015-06-07 13:22:27 +03:00
parent b7451f8db6
commit a5e0efc408
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ typedef std::vector< std::vector<wxChar> > GridType;
typedef std::vector< std::vector<wxChar> > CurGridType;
// Fisrt index is a word length
typedef std::vector< std::vector<wxString> > AllWordsType;
typedef std::set< size_t > UsedWords;
typedef std::set< uint32_t > UsedWords;
struct WordInfo {
size_t x;