Skip to content

Commit 35a8c26

Browse files
authored
Merge pull request #2107 from IntelPython/remove-duplicate-declaration-static-specifier
Remove duplicate 'static' declaration specifier
2 parents eed5274 + 7da920a commit 35a8c26

File tree

1 file changed

+2
-2
lines changed
  • dpctl/tensor/libtensor/include/kernels/elementwise_functions

1 file changed

+2
-2
lines changed

dpctl/tensor/libtensor/include/kernels/elementwise_functions/angle.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ template <typename argTy> struct AngleContigHyperparameterSet
115115
using value_type =
116116
typename std::disjunction<ContigHyperparameterSetDefault<4u, 2u>>;
117117

118-
static constexpr static auto vec_sz = value_type::vec_sz;
119-
static constexpr static auto n_vecs = value_type::n_vecs;
118+
constexpr static auto vec_sz = value_type::vec_sz;
119+
constexpr static auto n_vecs = value_type::n_vecs;
120120
};
121121

122122
} // end of namespace hyperparam_detail

0 commit comments

Comments
 (0)