Unused variable warning fix

This commit is contained in:
William S Fulton 2018-05-18 19:34:48 +01:00
commit aa9691b1a8

View file

@ -138,7 +138,7 @@ DoxygenParser::commandBelongs(const std::string &theCommand)
}
// Check if this command is defined as an alias.
if (String* const alias = Getattr(m_node, ("feature:doxygen:alias:" + theCommand).c_str())) {
if (Getattr(m_node, ("feature:doxygen:alias:" + theCommand).c_str())) {
return COMMAND_ALIAS;
}