Skip to content

Commit

Permalink
test: avoid short names
Browse files Browse the repository at this point in the history
  • Loading branch information
skypjack committed Oct 8, 2024
1 parent a15751a commit 30b6854
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/entt/meta/meta_pointer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ struct wrapped_shared_ptr {
struct self_ptr {
using element_type = self_ptr;

self_ptr(int v)
: value{v} {}
self_ptr(int val)
: value{val} {}

const self_ptr &operator*() const {
return *this;
Expand All @@ -38,8 +38,8 @@ struct self_ptr {
struct proxy_ptr {
using element_type = proxy_ptr;

proxy_ptr(int &v)
: value{&v} {}
proxy_ptr(int &val)
: value{&val} {}

proxy_ptr operator*() const {
return *this;
Expand Down

0 comments on commit 30b6854

Please sign in to comment.