# HG changeset patch # User Santeri Piippo # Date 1380826091 -10800 # Node ID d6cbf21af8fb4a97dcca36b3f30962338f2173cc # Parent cb931c2d1e8bb9531e826dddd476ee137a3ee570 nuked "container_cast" diff -r cb931c2d1e8b -r d6cbf21af8fb src/ldconfig.cpp --- a/src/ldconfig.cpp Thu Oct 03 21:42:48 2013 +0300 +++ b/src/ldconfig.cpp Thu Oct 03 21:48:11 2013 +0300 @@ -113,7 +113,7 @@ // ============================================================================= // ----------------------------------------------------------------------------- LDConfigParser::LDConfigParser (str inText, char sep) -{ m_tokens = container_cast> (inText.split (sep, QString::SkipEmptyParts)); +{ m_tokens = inText.split (sep, QString::SkipEmptyParts); m_pos = -1; } @@ -126,7 +126,7 @@ // ============================================================================= // ----------------------------------------------------------------------------- bool LDConfigParser::atEnd() -{ return (m_pos == (signed) m_tokens.size() - 1); +{ return (m_pos == m_tokens.size() - 1); } // ============================================================================= diff -r cb931c2d1e8b -r d6cbf21af8fb src/ldconfig.h --- a/src/ldconfig.h Thu Oct 03 21:42:48 2013 +0300 +++ b/src/ldconfig.h Thu Oct 03 21:48:11 2013 +0300 @@ -20,6 +20,7 @@ #define LDCONFIG_H #include "types.h" +#include // ============================================================================= // StringParser @@ -46,8 +47,8 @@ } private: - List m_tokens; - short m_pos; + QStringList m_tokens; + int m_pos; }; void parseLDConfig(); diff -r cb931c2d1e8b -r d6cbf21af8fb src/misc.h --- a/src/misc.h Thu Oct 03 21:42:48 2013 +0300 +++ b/src/misc.h Thu Oct 03 21:48:11 2013 +0300 @@ -68,15 +68,6 @@ vertex rotPoint (const List& objs); void configRotationPoint(); -template R container_cast (const T& a) -{ R b; - - for (auto i : a) - b << i; - - return b; -} - // ============================================================================= namespace Grid { enum Type