Skip to content

Commit fe8d7d7

Browse files
committed
meta: drop unnecessary static keywords
1 parent ff32d77 commit fe8d7d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/entt/meta/utility.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ template<typename Type, typename... Args, std::size_t... Index>
248248
* @return The meta type of the i-th element of the list of arguments.
249249
*/
250250
template<typename Type>
251-
[[nodiscard]] static meta_type meta_arg(const meta_ctx &ctx, const std::size_t index) noexcept {
251+
[[nodiscard]] meta_type meta_arg(const meta_ctx &ctx, const std::size_t index) noexcept {
252252
auto &&context = internal::meta_context::from(ctx);
253253
return {ctx, internal::meta_arg_node(context, Type{}, index)};
254254
}
@@ -260,7 +260,7 @@ template<typename Type>
260260
* @return The meta type of the i-th element of the list of arguments.
261261
*/
262262
template<typename Type>
263-
[[nodiscard]] static meta_type meta_arg(const std::size_t index) noexcept {
263+
[[nodiscard]] meta_type meta_arg(const std::size_t index) noexcept {
264264
return meta_arg<Type>(locator<meta_ctx>::value_or(), index);
265265
}
266266

0 commit comments

Comments
 (0)