aboutsummaryrefslogtreecommitdiffstats
path: root/modules/spanningtree/main.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-05 17:03:09 +0000
committerGravatar Sadie Powell2026-03-05 17:07:09 +0000
commit35d04834c9d17b63cc859bf1ecebd2704f9ee741 (patch)
treeb14bac0f8df52e404a1cfae1b7923ac4c0c91035 /modules/spanningtree/main.cpp
parentFix 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.cpp6
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)
{
}