Skip to content

Commit

Permalink
add type to destructor in Variant.
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienDoerner committed Aug 28, 2024
1 parent d48ba06 commit 0f4ecdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Variant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Variant::Variant(const char* s) {
}

Variant::~Variant() {
clear();
clear(type);
}

const char* Variant::getTypeName() const {
Expand Down

0 comments on commit 0f4ecdb

Please sign in to comment.