From 01af919b2346673903bec2100d358d8031f80bc8 Mon Sep 17 00:00:00 2001
From: Olivier BICHLER <olivier.bichler@cea.fr>
Date: Fri, 29 Sep 2023 09:50:08 +0200
Subject: [PATCH] Try to fix MSVC error

---
 include/aidge/utils/StaticParameters.hpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/aidge/utils/StaticParameters.hpp b/include/aidge/utils/StaticParameters.hpp
index 7487312f6..a483fcdb7 100644
--- a/include/aidge/utils/StaticParameters.hpp
+++ b/include/aidge/utils/StaticParameters.hpp
@@ -123,6 +123,7 @@ public:
     template <std::size_t SIZE = std::tuple_size<std::tuple<T...>>::value-1>
     [[noreturn]] constexpr typename std::enable_if<(SIZE <= 0), std::string>::type getType(std::size_t /*i*/) const {
         assert(false && "parameter not found");
+        return std::string();  // useless, but makes MSVC happy
     }
 
     constexpr const std::tuple<T...>& getStaticParameters() const {
-- 
GitLab