Code Cleanup

- Removed unused text.cpp noVerticalSpace function.
This commit is contained in:
Paul Beckingham 2014-09-07 16:21:32 -04:00
parent 3f07173a03
commit 8a904fc287
3 changed files with 1 additions and 19 deletions

View file

@ -560,15 +560,6 @@ bool noSpaces (const std::string& input)
return true;
}
////////////////////////////////////////////////////////////////////////////////
bool noVerticalSpace (const std::string& input)
{
if (input.find_first_of ("\n\r\f") != std::string::npos)
return false;
return true;
}
////////////////////////////////////////////////////////////////////////////////
// Override of ispunct, that considers #, $ and @ not to be punctuation.
//

View file

@ -55,7 +55,6 @@ void guess (const std::string&, std::vector<std::string>&, std::string&);
bool nontrivial (const std::string&);
bool digitsOnly (const std::string&);
bool noSpaces (const std::string&);
bool noVerticalSpace (const std::string&);
bool isPunctuation (char);
std::string visible (char);
bool compare (const std::string&, const std::string&, bool sensitive = true);