Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Doxoh committed May 27, 2023
1 parent 933431e commit b6b0b1e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions c-api/core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ alt::MValueConst* Core_CreateMValueList(alt::ICore* core, alt::MValueConst* val[
auto mValueConst = core->CreateMValueList(size);
auto mValue = mValueConst;
for (uint64_t i = 0; i < size; i++) {
std::cout << "Core_CreateMValueList #" << i << " #" << std::endl;
auto mValueElement = val[i];
if (mValueElement == nullptr || mValueElement->get() == nullptr) {
mValue->Set(i, core->CreateMValueNil());
Expand All @@ -76,7 +75,6 @@ alt::MValueConst* Core_CreateMValueDict(alt::ICore* core, const char* keys[], al
auto mValueConst = core->CreateMValueDict();
auto mValue = mValueConst;
for (uint64_t i = 0; i < size; i++) {
std::cout << "Core_CreateMValueDict #" << keys[i] << " #" << std::endl;
auto mValueElement = val[i];
if (mValueElement == nullptr || mValueElement->get() == nullptr) {
mValue->Set(keys[i], core->CreateMValueNil());
Expand Down

0 comments on commit b6b0b1e

Please sign in to comment.