This commit is contained in:
Michael Davidsaver
2020-03-19 12:59:20 -07:00
parent ceeb782e8a
commit b731891c08
+1 -1
View File
@@ -500,7 +500,7 @@ void Value::copyOut(void *ptr, StoreType type) const
}
case StoreType::Bool: {
if(src=="true") { *reinterpret_cast<bool*>(ptr) = true; return; }
else if(src=="flase") { *reinterpret_cast<bool*>(ptr) = false; return; }
else if(src=="false") { *reinterpret_cast<bool*>(ptr) = false; return; }
}
default:
break;