Rules: Eliminated ::parseRuleExclusions

This commit is contained in:
Paul Beckingham 2016-03-28 00:31:23 -04:00
parent 090fa3c674
commit 1a559d4215
2 changed files with 0 additions and 9 deletions

View file

@ -386,14 +386,6 @@ void Rules::parseRuleSettings (
throw std::string ("Syntax error - indentation is not right.");
}
////////////////////////////////////////////////////////////////////////////////
void Rules::parseRuleExclusions (const std::vector <std::string>& lines)
{
for (auto& line : lines)
{
}
}
////////////////////////////////////////////////////////////////////////////////
unsigned int Rules::getIndentation (const std::string& line)
{

View file

@ -58,7 +58,6 @@ private:
void parseRule (const std::string&);
void parseRuleGeneral (const std::vector <std::string>&);
void parseRuleSettings (const std::vector <std::string>&, const std::string& prefix = "");
void parseRuleExclusions (const std::vector <std::string>&);
unsigned int getIndentation (const std::string&);
std::vector <std::string> tokenizeLine (const std::string&);