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

Fix: use index not string for comparison #28

Open
1 of 2 tasks
Poikilos opened this issue Aug 13, 2023 · 0 comments
Open
1 of 2 tasks

Fix: use index not string for comparison #28

Poikilos opened this issue Aug 13, 2023 · 0 comments
Labels
deferred - C++ only Deferred since master-python branch is now default. This issue applies to old deprecated-cpp-master

Comments

@Poikilos
Copy link
Owner

if fileI >= 0 and (paramATokenI > fileI or endParamsToken > fileI):

should be

if fileI >= 0 and (paramATokenI > fileI or endParamsTokenI > fileI):

  • fix in Python branch
  • fix in C++
@Poikilos Poikilos added the deferred - C++ only Deferred since master-python branch is now default. This issue applies to old deprecated-cpp-master label Aug 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
deferred - C++ only Deferred since master-python branch is now default. This issue applies to old deprecated-cpp-master
Projects
None yet
Development

No branches or pull requests

1 participant