From 290d42599ff9d78102e20ffb2cfcd5cd8b405e04 Mon Sep 17 00:00:00 2001 From: Franco Fusco Date: Wed, 31 Mar 2021 10:26:02 +0200 Subject: [PATCH] Fix format --- flightlib/include/flightlib/objects/static_gate.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flightlib/include/flightlib/objects/static_gate.hpp b/flightlib/include/flightlib/objects/static_gate.hpp index 689b153748..0f8417ddb3 100644 --- a/flightlib/include/flightlib/objects/static_gate.hpp +++ b/flightlib/include/flightlib/objects/static_gate.hpp @@ -5,7 +5,7 @@ namespace flightlib { class StaticGate : public StaticObject { public: - StaticGate(const std::string& id, const std::string& prefab_id="rpg_gate") + StaticGate(const std::string& id, const std::string& prefab_id = "rpg_gate") : StaticObject(id, prefab_id) {} ~StaticGate() {} };