Modernize: Use enum class

This commit is contained in:
Daniel Marjamäki 2019-07-17 10:39:06 +02:00
parent b15e6801a4
commit 2afd5f5dd0
1 changed files with 1 additions and 1 deletions

View File

@ -2511,7 +2511,7 @@ void CheckClass::duplInheritedMembersError(const Token *tok1, const Token* tok2,
// Check that copy constructor and operator defined together
//---------------------------------------------------------------------------
enum CtorType {
enum class CtorType {
NO,
WITHOUT_BODY,
WITH_BODY