Skip to content

Inconsistent naming convention in simple-decoder.cc #3444

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

Closed
csukuangfj opened this issue Jul 3, 2019 · 0 comments · Fixed by #3153
Closed

Inconsistent naming convention in simple-decoder.cc #3444

csukuangfj opened this issue Jul 3, 2019 · 0 comments · Fixed by #3153
Labels

Comments

@csukuangfj
Copy link
Contributor

Problem

See the code

std::vector<StateId> queue_;

The variable queue_ is a local variable but ending with an underscore _ .

Expected

Change it to

 std::vector<StateId> queue; 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant