File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ limitations under the License.
28
28
namespace tsl {
29
29
namespace strings {
30
30
31
- AlphaNum::AlphaNum (Hex hex) {
31
+ AlphaNum::AlphaNum (absl:: Hex hex) {
32
32
char *const end = &digits_[kFastToBufferSize ];
33
33
char *writer = end;
34
34
uint64 value = hex.value ;
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ class AlphaNum {
105
105
AlphaNum (bfloat16 bf) // NOLINT(runtime/explicit)
106
106
: piece_(digits_, FloatToBuffer(static_cast <float >(bf), digits_)) {}
107
107
108
- AlphaNum (Hex hex); // NOLINT(runtime/explicit)
108
+ AlphaNum (absl:: Hex hex); // NOLINT(runtime/explicit)
109
109
110
110
AlphaNum (const char *c_str) : piece_(c_str) {} // NOLINT(runtime/explicit)
111
111
AlphaNum (const absl::string_view &pc)
You can’t perform that action at this time.
0 commit comments