From 1a559d4215ef0cec121f94b17d76ae21fe736940 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 28 Mar 2016 00:31:23 -0400 Subject: [PATCH] Rules: Eliminated ::parseRuleExclusions --- src/Rules.cpp | 8 -------- src/Rules.h | 1 - 2 files changed, 9 deletions(-) diff --git a/src/Rules.cpp b/src/Rules.cpp index 2ae6163b..ed189e91 100644 --- a/src/Rules.cpp +++ b/src/Rules.cpp @@ -386,14 +386,6 @@ void Rules::parseRuleSettings ( throw std::string ("Syntax error - indentation is not right."); } -//////////////////////////////////////////////////////////////////////////////// -void Rules::parseRuleExclusions (const std::vector & lines) -{ - for (auto& line : lines) - { - } -} - //////////////////////////////////////////////////////////////////////////////// unsigned int Rules::getIndentation (const std::string& line) { diff --git a/src/Rules.h b/src/Rules.h index e1dea3f4..76ced25a 100644 --- a/src/Rules.h +++ b/src/Rules.h @@ -58,7 +58,6 @@ private: void parseRule (const std::string&); void parseRuleGeneral (const std::vector &); void parseRuleSettings (const std::vector &, const std::string& prefix = ""); - void parseRuleExclusions (const std::vector &); unsigned int getIndentation (const std::string&); std::vector tokenizeLine (const std::string&);