From 2a42c6185d2ef98e4efc977cbcc9aecf3d68145a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 23 Jan 2003 03:38:42 +0000 Subject: [PATCH] remove some unused locale stuff --- stepmania/src/StdString.h | 24 ------------------------ 1 file changed, 24 deletions(-) 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