From 617addbdf334e764091661f0943bb3689a8289a3 Mon Sep 17 00:00:00 2001 From: Mark Barger Date: Wed, 25 Feb 2026 19:14:42 -0500 Subject: [PATCH] cast enum to int for new spdlog --- test/examples/8-ConfigFile/ConfigFileExample.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/examples/8-ConfigFile/ConfigFileExample.cpp b/test/examples/8-ConfigFile/ConfigFileExample.cpp index 30fd34c25..45c8a990c 100644 --- a/test/examples/8-ConfigFile/ConfigFileExample.cpp +++ b/test/examples/8-ConfigFile/ConfigFileExample.cpp @@ -33,7 +33,7 @@ int main() GravityReturnCode ret = gn.init("ConfigFileExample"); while (ret != GravityReturnCodes::SUCCESS) { - spdlog::warn("Could not initialize GravityNode, return code was {} retrying...", ret); + spdlog::warn("Could not initialize GravityNode, return code was {} retrying...", static_cast(ret)); ret = gn.init("ConfigFileExample"); }