From 7550c351ae0db582bb4f5f8aaa7894d6ddf17079 Mon Sep 17 00:00:00 2001 From: craftablescience Date: Mon, 17 Jun 2024 18:52:04 -0400 Subject: [PATCH] fix(kvpp): compilation on linux --- include/kvpp/kvpp.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/kvpp/kvpp.h b/include/kvpp/kvpp.h index 37ec50aef..c735bab89 100644 --- a/include/kvpp/kvpp.h +++ b/include/kvpp/kvpp.h @@ -31,8 +31,6 @@ class Element { return std::stoi(this->value); } else if constexpr (std::same_as) { return std::stof(this->value); - } else { - static_assert(false, "Invalid type!"); } return T{}; }