Convert InvalidValueType to enum class

This commit is contained in:
amai2012 2019-07-31 22:56:16 +02:00
parent b0fbbb5aa7
commit 8a934805ed
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
namespace CTU {
class CPPCHECKLIB FileInfo : public Check::FileInfo {
public:
enum InvalidValueType { null, uninit, bufferOverflow };
enum class InvalidValueType { null, uninit, bufferOverflow };
std::string toString() const OVERRIDE;