diff options
Diffstat (limited to 'src/include/iodevice.h')
-rw-r--r-- | src/include/iodevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/iodevice.h b/src/include/iodevice.h index 3e3330d..18e3a83 100644 --- a/src/include/iodevice.h +++ b/src/include/iodevice.h @@ -43,7 +43,7 @@ namespace Binc { }; /// Errors from when an operation returned false. - enum Error { Unknown, Timeout }; + enum class Error { Unknown, Timeout }; /** * Constructs an invalid IODevice. @@ -123,7 +123,7 @@ namespace Binc { */ unsigned int getTimeout() const; - enum LogLevel { ErrorLevel, InfoLevel, WarningLevel, DebugLevel }; + enum class LogLevel { ErrorLevel, InfoLevel, WarningLevel, DebugLevel }; /** * Sets the output level for the following write operations on this |