From fa7e45440391d27a15c94894ffcdf945025a68dd Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Tue, 18 Sep 2018 21:42:46 +0100 Subject: [PATCH] PascalCase UndefinedGroupError::getGroupName() For consistency, as it's only one of two camelCase method names in the API. --- include/loot/exception/undefined_group_error.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/loot/exception/undefined_group_error.h b/include/loot/exception/undefined_group_error.h index d18f4b56..f0b63194 100644 --- a/include/loot/exception/undefined_group_error.h +++ b/include/loot/exception/undefined_group_error.h @@ -45,7 +45,7 @@ public: * Get the name of the undefined group. * @return A group name. */ - std::string getGroupName() { return groupName_; } + std::string GetGroupName() { return groupName_; } private: const std::string groupName_;