diff options
| author | 2026-03-05 17:03:09 +0000 | |
|---|---|---|
| committer | 2026-03-05 17:07:09 +0000 | |
| commit | 35d04834c9d17b63cc859bf1ecebd2704f9ee741 (patch) | |
| tree | b14bac0f8df52e404a1cfae1b7923ac4c0c91035 /modules/spanningtree/main.cpp | |
| parent | Fix using the wrong parameter in the rline module. (diff) | |
Switch Reply::Type to be an enum instead of an enum class.
This is shorter and its fully disambiguated anyway.
Diffstat (limited to 'modules/spanningtree/main.cpp')
| -rw-r--r-- | modules/spanningtree/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/spanningtree/main.cpp b/modules/spanningtree/main.cpp index 97bd3ca8a..09793c7a2 100644 --- a/modules/spanningtree/main.cpp +++ b/modules/spanningtree/main.cpp @@ -93,9 +93,9 @@ SpanningTreeCommands::SpanningTreeCommands(ModuleSpanningTree* module) , sinfo(module) , num(module) , lmode(module) - , fail(module, Reply::Type::FAIL) - , warn(module, Reply::Type::WARN) - , note(module, Reply::Type::NOTE) + , fail(module, Reply::FAIL) + , warn(module, Reply::WARN) + , note(module, Reply::NOTE) { } |
