]> Cypherpunks repositories - gostls13.git/commit
encoding/hex: change lookup table back to string
authorJosh Bleecher Snyder <josharian@gmail.com>
Tue, 18 Apr 2017 17:54:10 +0000 (10:54 -0700)
committerJosh Bleecher Snyder <josharian@gmail.com>
Tue, 18 Apr 2017 18:16:08 +0000 (18:16 +0000)
commit5e15497b5682acfe5c761bc116c6f157efcc8042
tree60b61f986f77393736edf5e07b0edd53d09f4e50
parent174707869544b246c055b9a5f53ca7d4ea860b67
encoding/hex: change lookup table back to string

CL 27254 changed hextable to a byte array for performance.
CL 28219 fixed the compiler so that that is no longer necessary.
As Kirill notes in #15808, a string is preferable
as the linker can easily de-dup it.
So go back. No performance changes.

Change-Id: Ibef7d21d0f2507968a0606602c5dd57ed4a85b1b
Reviewed-on: https://go-review.googlesource.com/40970
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
src/encoding/hex/hex.go