-
Notifications
You must be signed in to change notification settings - Fork 2.3k
go/analysis/passes/printf: allow # for b flag #182
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
Conversation
Adding the # to a b flag is allowed and adds a leading 0b to the output.
This PR (HEAD: 016896a) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/tools/+/203798 to see it. Tip: You can toggle comments from me using the |
Message from Erik Dubbelboer: Patch Set 1: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/203798. |
Message from Michael Matloob: Patch Set 1: Run-TryBot+1 Code-Review+2 Please don’t reply on this GitHub thread. Visit golang.org/cl/203798. |
Message from Gobot Gobot: Patch Set 1: TryBots beginning. Status page: https://farmer.golang.org/try?commit=e321812d Please don’t reply on this GitHub thread. Visit golang.org/cl/203798. |
Message from Gobot Gobot: Patch Set 1: Build is still in progress... Other builds still in progress; subsequent failure notices suppressed until final report. Consult https://build.golang.org/ to see whether they are new failures. Keep in mind that TryBots currently test exactly your git commit, without rebasing. If your commit's git parent is old, the failure might've already been fixed. Please don’t reply on this GitHub thread. Visit golang.org/cl/203798. |
Message from Erik Dubbelboer: Patch Set 1: These failures have nothing do with my change. Please don’t reply on this GitHub thread. Visit golang.org/cl/203798. |
Adding the `#` to a `b` flag is allowed and adds a leading `0b` to the output. Change-Id: I421891f9478d1aaff2585455f38b3aa50e8277ab GitHub-Last-Rev: 016896a GitHub-Pull-Request: #182 Reviewed-on: https://go-review.googlesource.com/c/tools/+/203798 Reviewed-by: Erik Dubbelboer <[email protected]> Reviewed-by: Michael Matloob <[email protected]> Run-TryBot: Michael Matloob <[email protected]>
This PR is being closed because golang.org/cl/203798 has been merged. |
Adding the `#` to a `b` flag is allowed and adds a leading `0b` to the output. For golang/go#39287. Change-Id: I421891f9478d1aaff2585455f38b3aa50e8277ab GitHub-Last-Rev: 016896a GitHub-Pull-Request: #182 Reviewed-on: https://go-review.googlesource.com/c/tools/+/203798 Reviewed-by: Erik Dubbelboer <[email protected]> Reviewed-by: Michael Matloob <[email protected]> Run-TryBot: Michael Matloob <[email protected]> Reviewed-on: https://go-review.googlesource.com/c/tools/+/237944 Run-TryBot: Dmitri Shuralyov <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
Adding the
#
to ab
flag is allowed and adds a leading0b
to the output.