fixed some warnings

This commit is contained in:
2022-06-10 18:47:00 +03:00
parent 104dde3f74
commit 7ea373b6e4
4 changed files with 16 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ const char* my_type_name(my_type t){
case AutoarrUInt64Ptr: return "AutoarrUInt64Ptr";
case AutoarrUnitypePtr: return "AutoarrUnitypePtr";
case AutoarrKVPairPtr: return "AutoarrKVPairPtr";
default: throw(ERR_WRONGTYPE); return "ERROR";
default: throw(ERR_WRONGTYPE);
}
}