From 4d005cda2a0f508525e7fceba2fa0ba746bfbdf7 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sat, 11 Jan 2025 18:17:05 -0600 Subject: [PATCH] More succinct using statements Co-authored-by: Celtic Minstrel --- src/game/boe.main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/boe.main.cpp b/src/game/boe.main.cpp index 696ee82f..17ddd7a4 100644 --- a/src/game/boe.main.cpp +++ b/src/game/boe.main.cpp @@ -46,8 +46,8 @@ #include "tools/event_listener.hpp" #include "tools/drawable_manager.hpp" -using Catch::clara::ParserResult; -using Catch::clara::ParseResultType; +using clara::ParserResult; +using clara::ParseResultType; bool All_Done = false; sf::RenderWindow mainPtr;