Skip to content

Commit

Permalink
fix(kvpp): compilation on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
craftablescience committed Jun 17, 2024
1 parent f078f59 commit 7550c35
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions include/kvpp/kvpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ class Element {
return std::stoi(this->value);
} else if constexpr (std::same_as<T, float>) {
return std::stof(this->value);
} else {
static_assert(false, "Invalid type!");
}
return T{};
}
Expand Down

0 comments on commit 7550c35

Please sign in to comment.