Skip to content

Commit

Permalink
Merge pull request ccrma#411 from eitomurakami/main
Browse files Browse the repository at this point in the history
change bool to t_CKBOOL to avoid an implicit conversion
  • Loading branch information
gewang authored Nov 15, 2023
2 parents a985299 + e1e9e2d commit 5b3076f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/chuck_dl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1515,7 +1515,7 @@ Chuck_Object * do_ck_create( Chuck_VM_Shred * shred, Chuck_VM * vm, Chuck_DL_Api
{
// 1.5.1.9 (nshaheed) added
t_CKINT index = 0;
bool is_object = isa(type->array_type, vm->env()->ckt_object);
t_CKBOOL is_object = isa(type->array_type, vm->env()->ckt_object);
// get array depth
t_CKUINT depth = type->array_depth;
// create capacity
Expand Down

0 comments on commit 5b3076f

Please sign in to comment.