Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unnecessary (int) cast of return value in SFEVL53L1X::getDistance() #56

Open
thuscoder opened this issue Jan 15, 2023 · 0 comments
Open

Comments

@thuscoder
Copy link

uint16_t SFEVL53L1X::getDistance()
{
uint16_t distance;
_device->VL53L1X_GetDistance(&distance);
return (int)distance;
}

The function return type is uint16_t. Why is there an "(int)" cast in the return statement?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant