Removed some unused code from Console
authorIngo Ruhnke <grumbel@gmail.com>
Fri, 8 Aug 2014 00:05:44 +0000 (02:05 +0200)
committerIngo Ruhnke <grumbel@gmail.com>
Fri, 8 Aug 2014 03:53:11 +0000 (05:53 +0200)
src/supertux/console.hpp

index d81bbf3..9c60898 100644 (file)
@@ -62,26 +62,6 @@ public:
 
   bool hasFocus(); /**< true if characters should be sent to the console instead of their normal target */
 
-  template<typename T> static bool string_is(std::string s) {
-    std::istringstream iss(s);
-    T i;
-    if ((iss >> i) && iss.eof()) {
-      return true;
-    } else {
-      return false;
-    }
-  }
-
-  template<typename T> static T string_to(std::string s) {
-    std::istringstream iss(s);
-    T i;
-    if ((iss >> i) && iss.eof()) {
-      return i;
-    } else {
-      return T();
-    }
-  }
-
 private:
   std::list<std::string> history; /**< command history. New lines get added to back. */
   std::list<std::string>::iterator history_position; /**< item of command history that is currently displayed */