Andrew Gaul
|
7638b5b3e3
|
Prefer std::string::rbegin over operator[] (#1673)
This is more concise and safer due to not repeating the variable name.
We cannot use std::string::back since it is not available in C++03.
|
2021-06-13 13:26:38 +09:00 |
|
Andrew Gaul
|
600cee118d
|
Fix implicit narrowing conversions (#1672)
These do not appear to be problematic but rather just clean up warnings.
Found via clang -Wshorten-64-to-32.
|
2021-06-13 12:50:07 +09:00 |
|
Andrew Gaul
|
8ef01d37a9
|
Fix a few nits (#1645)
Make some strings more const, initialize members, and abort if lock
initialization fails. Partially found via clang-tidy.
|
2021-05-06 19:40:35 +09:00 |
|
Andrew Gaul
|
032fcf2a47
|
Allow optional issuing of ListObjectsV2 (#1583)
This allows use of s3fs on object stores that do not implement
the V1 API. Fixes #1573.
|
2021-02-23 09:45:13 +09:00 |
|
Andrew Gaul
|
1043e08dfa
|
Remove uses of implicit namespace std
Fixed via:
sed -i '/using namespace std/{N;d}' src/*.cpp
sed -i 's/ string/ std::string/g' src/*.cpp
sed -i 's/(string/(std::string/g' src/*.cpp
sed -i 's/\[string/\[std::string/g' src/*.cpp
sed -i 's/^string/std::string/g' src/*.cpp
sed -i 's/ ifstream/ std::ifstream/g' src/*.cpp
sed -i 's/ istringstream/ std::istringstream/g' src/*.cpp
sed -i 's/ ostringstream/ std::ostringstream/g' src/*.cpp
sed -i 's/ max(/ std::max(/g' src/*.cpp
sed -i 's/ min(/ std::min(/g' src/*.cpp
sed -i 's/ endl/ std::endl/g' src/*.cpp
|
2020-09-13 11:57:20 +09:00 |
|
Takeshi Nakatani
|
b5ffd419d8
|
Source file division and set 4 spaces and cleanup
|
2020-08-26 17:43:50 +09:00 |
|