2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-21 22:19:12 +00:00

gcc compile fix

This commit is contained in:
Jack Andersen
2015-05-19 19:45:19 -10:00
parent 93a602be9a
commit 880c9f6c95
3 changed files with 10 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ public:
CToolHelp(const SToolPassInfo& info)
: CToolBase(info)
{
if (!m_info.args.size())
if (m_info.args.empty())
throw std::invalid_argument("help requires a tool name argument");
}