Correctify explicit usage (#951)

This commit is contained in:
Ayaz Salikhov 2017-09-07 14:03:45 +03:00 committed by Daniel Marjamäki
parent 2604156fe7
commit 1d2b58e828
2 changed files with 2 additions and 2 deletions

View File

@ -188,7 +188,7 @@ private:
/** disabled assignment operator and copy constructor */
void operator=(const Check &);
explicit Check(const Check &);
Check(const Check &);
};
/// @}

View File

@ -81,7 +81,7 @@ public:
/** character that is inserted in expanded macros */
static char macroChar;
Preprocessor(Settings& settings, ErrorLogger *errorLogger = nullptr);
explicit Preprocessor(Settings& settings, ErrorLogger *errorLogger = nullptr);
virtual ~Preprocessor();
static bool missingIncludeFlag;