Skip to content

Commit 662f040

Browse files
refactor: delete Int64ToString (#2130)
1 parent 88bd0ca commit 662f040

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/codec/codec.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
#include <map>
2121
#include <memory>
22-
#include <sstream>
2322
#include <string>
2423
#include <utility>
2524
#include <vector>
@@ -238,13 +237,6 @@ int32_t GetStrCol(int8_t* input, int32_t str_field_offset, int32_t next_str_fiel
238237
int32_t type_id, int8_t* data);
239238
} // namespace v1
240239

241-
inline std::string Int64ToString(const int64_t key) {
242-
std::stringstream ss;
243-
ss << std::hex << key;
244-
std::string key_str = ss.str();
245-
return key_str;
246-
}
247-
248240
} // namespace codec
249241
} // namespace openmldb
250242

0 commit comments

Comments
 (0)