Skip to content

Commit 23d144c

Browse files
Automated Code Change
PiperOrigin-RevId: 787004081
1 parent 68f5ecd commit 23d144c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tsl/platform/strcat.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ limitations under the License.
2828
namespace tsl {
2929
namespace strings {
3030

31-
AlphaNum::AlphaNum(Hex hex) {
31+
AlphaNum::AlphaNum(absl::Hex hex) {
3232
char *const end = &digits_[kFastToBufferSize];
3333
char *writer = end;
3434
uint64 value = hex.value;

tsl/platform/strcat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class AlphaNum {
105105
AlphaNum(bfloat16 bf) // NOLINT(runtime/explicit)
106106
: piece_(digits_, FloatToBuffer(static_cast<float>(bf), digits_)) {}
107107

108-
AlphaNum(Hex hex); // NOLINT(runtime/explicit)
108+
AlphaNum(absl::Hex hex); // NOLINT(runtime/explicit)
109109

110110
AlphaNum(const char *c_str) : piece_(c_str) {} // NOLINT(runtime/explicit)
111111
AlphaNum(const absl::string_view &pc)

0 commit comments

Comments
 (0)