From 22ff08a01dec9cb0c1cd7e7d899fb9f327352994 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Mon, 24 Feb 2025 13:46:52 +0000 Subject: [PATCH] [Fix] 'Gather_Op::attributeName()' description --- include/aidge/operator/Gather.hpp | 2 +- include/aidge/utils/Types.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/aidge/operator/Gather.hpp b/include/aidge/operator/Gather.hpp index 60bec8d1c..964e1b45d 100644 --- a/include/aidge/operator/Gather.hpp +++ b/include/aidge/operator/Gather.hpp @@ -221,7 +221,7 @@ constexpr const char* const EnumStrings<Aidge::Gather_Op::Attr>::data[] = { }; } -constexpr const char* const* attributesName() { +constexpr const char* const* Aidge::Gather_Op::attributesName() { return EnumStrings<Aidge::Gather_Op::Attr>::data; } diff --git a/include/aidge/utils/Types.h b/include/aidge/utils/Types.h index 6cbf37557..c6b8bd4b2 100644 --- a/include/aidge/utils/Types.h +++ b/include/aidge/utils/Types.h @@ -13,10 +13,10 @@ #ifndef AIDGE_TYPES_H_ #define AIDGE_TYPES_H_ -#include <limits> -#include <type_traits> #include <cstddef> #include <cstdint> +#include <limits> +#include <type_traits> namespace Aidge { -- GitLab