Deprecate stripLTWScstring

This commit is contained in:
Ray Speth 2013-06-05 17:09:54 +00:00
parent 2483e39ae5
commit 8757836d64
2 changed files with 2 additions and 0 deletions

View file

@ -206,6 +206,7 @@ std::string wrapString(const std::string& s,
* @param str On output 'str' contains the same characters as on input except
* the leading and trailing white space and comments have been
* removed.
* @deprecated
*/
int stripLTWScstring(char str[]);

View file

@ -328,6 +328,7 @@ std::string parseSpeciesName(const std::string& nameStr, std::string& phaseName)
int stripLTWScstring(char str[])
{
warn_deprecated("stripLTWScstring");
int i = 0, j = 0;
char ch;
const char COM_CHAR='\0';