From 04ca46aaa609befb018f2856e72d28eb8b81f549 Mon Sep 17 00:00:00 2001 From: Maxence Naud <maxence.naud@cea.fr> Date: Mon, 25 Sep 2023 12:56:24 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) --- include/aidge/operator/Scaling.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aidge/operator/Scaling.hpp b/include/aidge/operator/Scaling.hpp index 81d4f2659..0d825a930 100644 --- a/include/aidge/operator/Scaling.hpp +++ b/include/aidge/operator/Scaling.hpp @@ -113,7 +113,7 @@ public: inline IOIndex_t nbOutputs() const noexcept override final { return 1; } }; -inline std::shared_ptr<Node> Scaling(float scalingFactor = 1.0f, const char* name = nullptr) { +inline std::shared_ptr<Node> Scaling(float scalingFactor = 1.0f, const std::string& name = "") { // FIXME: properly handle default w&b initialization in every cases return std::make_shared<Node>(std::make_shared<Scaling_Op>(scalingFactor), name); } -- GitLab