Remove Config::getProcessName because it was unused

This commit is contained in:
Martin Hořeňovský 2021-09-08 00:00:16 +02:00
parent e4719fb51c
commit ea49210eae
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
2 changed files with 0 additions and 2 deletions

View File

@ -52,7 +52,6 @@ namespace Catch {
bool Config::listTags() const { return m_data.listTags; }
bool Config::listReporters() const { return m_data.listReporters; }
std::string Config::getProcessName() const { return m_data.processName; }
std::string const& Config::getReporterName() const { return m_data.reporterName; }
std::vector<std::string> const& Config::getTestsOrTags() const { return m_data.testsOrTags; }

View File

@ -76,7 +76,6 @@ namespace Catch {
bool listTags() const;
bool listReporters() const;
std::string getProcessName() const;
std::string const& getReporterName() const;
std::vector<std::string> const& getTestsOrTags() const override;