remove some unused locale stuff

This commit is contained in:
Glenn Maynard
2003-01-23 03:38:42 +00:00
parent b2062dd91f
commit 2a42c6185d
-24
View File
@@ -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<typename CT>
struct SSToUpper : public std::binary_function<CT, std::locale, CT>
{
inline CT operator()(const CT& t, const std::locale& loc) const
{
return sstoupper<CT>(t, loc);
}
};
template<typename CT>
struct SSToLower : public std::binary_function<CT, std::locale, CT>
{
inline CT operator()(const CT& t, const std::locale& loc) const
{
return sstolower<CT>(t, loc);
}
};
#endif
// Now we can define the template (finally!)
// =============================================================================
// TEMPLATE: CStdStr