[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:
Rosen Penev
2020-04-02 19:35:37 -07:00
committed by Fabian Homborg
parent 194fa4a548
commit 312b575424
4 changed files with 4 additions and 4 deletions

View File

@@ -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;
}