Renamed YAML type checking function

This commit is contained in:
Nav
2022-09-17 00:07:20 +01:00
parent c32cd03872
commit 0e9eba22bc
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ namespace Bloom
{
public:
template <typename Type>
static bool isType(const YAML::Node& node) {
static bool isCastable(const YAML::Node& node) {
try {
node.as<Type>();
return true;