mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-28 04:51:15 -03:00
[clang-tidy] numeric literals to uppercase
Found with hicpp-uppercase-literal-suffix Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
committed by
Fabian Homborg
parent
194fa4a548
commit
312b575424
@@ -153,5 +153,5 @@ int wcsfilecmp_glob(const wchar_t *a, const wchar_t *b) {
|
||||
long long get_time() {
|
||||
struct timeval time_struct;
|
||||
gettimeofday(&time_struct, nullptr);
|
||||
return 1000000ll * time_struct.tv_sec + time_struct.tv_usec;
|
||||
return 1000000LL * time_struct.tv_sec + time_struct.tv_usec;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user