diff options
author | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-10-11 19:28:50 +0200 |
---|---|---|
committer | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-10-11 19:28:50 +0200 |
commit | 3ea7edf8c9bf7583c426178d4aaff4fb5b736bd2 (patch) | |
tree | ae78ebf9e9d1f70da8a6fdad1504063644ee8f1e /src/iodevice.cc | |
parent | 1a7c572099edf744d6bb67318cff215de3fcd897 (diff) |
use some enum classes
move ParseResult to recursivedescent.h
Diffstat (limited to 'src/iodevice.cc')
-rw-r--r-- | src/iodevice.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/iodevice.cc b/src/iodevice.cc index e68167f..6ee0e5f 100644 --- a/src/iodevice.cc +++ b/src/iodevice.cc @@ -24,9 +24,9 @@ IODevice::IODevice(int f) , timeout(0) , readCount(0) , writeCount(0) - , outputLevel(ErrorLevel) - , outputLevelLimit(ErrorLevel) - , error(Unknown) + , outputLevel(LogLevel::ErrorLevel) + , outputLevelLimit(LogLevel::ErrorLevel) + , error(Error::Unknown) , errorString("Unknown device error") , dumpfd(0) {} |