Remove unus(ed|ual) ssasn function to fix warnings

Why in tarnation would you assign an int to a string anyway?  We're
apparently not using this, so remove it for now.  Should fix a lot of
unused-parameter warnings.
This commit is contained in:
Devin J. Pohly
2013-07-29 11:58:19 -04:00
parent 1da76c3a54
commit db729ff6de
-9
View File
@@ -214,15 +214,6 @@ inline void ssasn(std::string& sDst, PCSTR pA)
sDst.assign(pA);
#endif
}
/**
* @brief Erase the destination string.
* @param sDst the destination string.
* @param nNull the null value.
*/
inline void ssasn(std::string& sDst, const int nNull)
{
sDst.erase();
}
#undef StrSizeType