diff --git a/stepmania/src/StdString.h b/stepmania/src/StdString.h index 08106492c8..0d9a8a9036 100644 --- a/stepmania/src/StdString.h +++ b/stepmania/src/StdString.h @@ -594,30 +594,6 @@ inline void ssadd(std::string& sDst, PCSTR pA) #endif -// ----------------------------------------------------------------------------- -// Functional objects for changing case. They also let you pass locales -// ----------------------------------------------------------------------------- - -#ifdef SS_ANSI - template - struct SSToUpper : public std::binary_function - { - inline CT operator()(const CT& t, const std::locale& loc) const - { - return sstoupper(t, loc); - } - }; - template - struct SSToLower : public std::binary_function - { - inline CT operator()(const CT& t, const std::locale& loc) const - { - return sstolower(t, loc); - } - }; -#endif - - // Now we can define the template (finally!) // ============================================================================= // TEMPLATE: CStdStr