Skip to content

Commit

Permalink
Attempt at fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
adams85 committed Feb 29, 2024
1 parent e5b6312 commit f9b4b81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/configcatclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,8 @@ EvaluationDetails<ValueType> ConfigCatClient::evaluate(const std::string& key,
value = returnValue;
}
else {
static_assert(false, "Unsupported value type.");
static_assert(false, typeid(T).name());
//static_assert(false, "Unsupported value type.");
}

EvaluationDetails<ValueType> details(key,
Expand Down

0 comments on commit f9b4b81

Please sign in to comment.