Skip to content

Commit 95d427c

Browse files
committed
代码规范
1 parent acc53fa commit 95d427c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/string_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ std::string StringUtil::JoinStrings(const std::vector<std::string>& str_vec,
111111
}
112112

113113
uint64_t StringUtil::StringToUint64(const std::string& str) {
114-
unsigned long long temp = strtoull(str.c_str(), NULL, 10);
114+
uint64_t temp = strtoull(str.c_str(), NULL, 10);
115115
return temp;
116116
}
117117

0 commit comments

Comments
 (0)