From d7fcce99b14d8469bcd52f864baa6879a400a822 Mon Sep 17 00:00:00 2001 From: Sebastian Hahta <joseha@utu.fi> Date: Tue, 16 Jun 2020 15:22:09 +0300 Subject: [PATCH] missing ; --- components/common/cpp/include/ftl/configuration.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/common/cpp/include/ftl/configuration.hpp b/components/common/cpp/include/ftl/configuration.hpp index ec8357155..1111e229e 100644 --- a/components/common/cpp/include/ftl/configuration.hpp +++ b/components/common/cpp/include/ftl/configuration.hpp @@ -174,7 +174,7 @@ T *ftl::config::create(json_t &link, ARGS ...args) { T* ptr = dynamic_cast<T*>(cfg); if (ptr) { - return ptr + return ptr; } else { throw FTL_Error("Configuration URI object is of wrong type: " << id); -- GitLab