Skip to content

Commit

Permalink
conf_variant: Remove debug counter.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtrbt committed May 8, 2024
1 parent f4bbd61 commit 76d49de
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions software/src/config/conf_variant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ const char *Config::ConfVariant::getVariantName() const
}

Config::ConfVariant::ConfVariant(ConfVariant &&cpy) {
++conf_variant_move_counter;
if (tag != Tag::EMPTY)
destroyUnionMember();

Expand Down Expand Up @@ -202,8 +201,6 @@ Config::ConfVariant::ConfVariant(ConfVariant &&cpy) {
}

Config::ConfVariant &Config::ConfVariant::operator=(ConfVariant &&cpy) {
++conf_variant_move_counter;

if (tag != Tag::EMPTY)
destroyUnionMember();

Expand Down

0 comments on commit 76d49de

Please sign in to comment.