-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
Milestone
Description
in file Var.h there are those lines of code
throw BadCastException(format("Can not convert %s to %s.",
pHolder->type().name(),
typeid(T).name()));
that result in
Can not convert [ERRFMT] to [ERRFMT].
because pHolder->type().name() is char*
better to use std::string(pHolder->type().name())
Reactions are currently unavailable