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

Change the for loops counter type to size_t #10

Closed
MertGunduz opened this issue Oct 22, 2023 · 1 comment
Closed

Change the for loops counter type to size_t #10

MertGunduz opened this issue Oct 22, 2023 · 1 comment
Labels
help wanted Extra attention is needed

Comments

@MertGunduz
Copy link
Owner

For loops are using this in the current codebase:

for (int i = 0; i < NUM; i++)
{
      // code
}

We want to make it like this for better readability and optimisation:

for (size_t i = 0; i < NUM; i++)
{
      // code
}
@MertGunduz
Copy link
Owner Author

Finished 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant