Takeshi Nakatani
|
533322859d
|
Added comment for nullPointerRedundantCheck/cppcheck2.2
|
2020-11-21 20:06:14 +09:00 |
|
Andrew Gaul
|
503c86bb8a
|
Call is_prefix instead of compare and substr
|
2020-09-27 22:19:54 +09:00 |
|
Andrew Gaul
|
2438066d52
|
Remove calls to append, assign, and at
operator+, operator=, and operator[] are more idiomatic and consistent
with the code base.
|
2020-09-25 12:19:51 +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 |
|