From 7da920a2c750ac4c499fe5acf945794005722db5 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Wed, 18 Jun 2025 10:18:28 +0200 Subject: [PATCH] Remove duplicate 'static' declaration specifier --- .../libtensor/include/kernels/elementwise_functions/angle.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dpctl/tensor/libtensor/include/kernels/elementwise_functions/angle.hpp b/dpctl/tensor/libtensor/include/kernels/elementwise_functions/angle.hpp index 9af8970376..843c982de1 100644 --- a/dpctl/tensor/libtensor/include/kernels/elementwise_functions/angle.hpp +++ b/dpctl/tensor/libtensor/include/kernels/elementwise_functions/angle.hpp @@ -115,8 +115,8 @@ template struct AngleContigHyperparameterSet using value_type = typename std::disjunction>; - static constexpr static auto vec_sz = value_type::vec_sz; - static constexpr static auto n_vecs = value_type::n_vecs; + constexpr static auto vec_sz = value_type::vec_sz; + constexpr static auto n_vecs = value_type::n_vecs; }; } // end of namespace hyperparam_detail