Skip to content

Commit

Permalink
Fix return null.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shylock-Hg authored and xtcyclist committed Dec 2, 2022
1 parent a259ff1 commit 55fa604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/function/FunctionManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2834,7 +2834,7 @@ FunctionManager::FunctionManager() {
return arg.get();
}
}
return Value::kNullBadData;
return Value::kNullValue;
};
}
} // NOLINT
Expand Down

0 comments on commit 55fa604

Please sign in to comment.