summaryrefslogtreecommitdiff
path: root/src/iodevice.cc
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2023-10-11 19:28:50 +0200
committerJannis M. Hoffmann <jannis@fehcom.de>2023-10-11 19:28:50 +0200
commit3ea7edf8c9bf7583c426178d4aaff4fb5b736bd2 (patch)
treeae78ebf9e9d1f70da8a6fdad1504063644ee8f1e /src/iodevice.cc
parent1a7c572099edf744d6bb67318cff215de3fcd897 (diff)
use some enum classes
move ParseResult to recursivedescent.h
Diffstat (limited to 'src/iodevice.cc')
-rw-r--r--src/iodevice.cc6
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)
{}