Alexander Wilms
73019c204d
Replace redundant types with auto
for the lvalues of template factory functions for smart pointers
grep -r --include \*.h --include \*.cpp "= std::" * | grep -v auto | grep -Po ".*[^ ]+ [^ ]+ [^ ]*[ ]*=.*;" | grep -v "auto\|int\|char\|bool\|float|\double\|for\|if\|googletest\|fuzzylite\|size_t\|using\|return" | grep -v double | grep -v si64 | grep -v si32 | grep -v ui32 | grep \< | grep -v float | tr -d '\t' | grep -v assert > redundant_types.txt
import re
with open("redundant_types.txt") as f:
for line in f:
line = line.strip()
path = line.split(":", 1)[0]
original_code = ":".join(line.split(":")[1:]).strip()
print()
print(path)
print(original_code)
prefix = "auto "
if original_code.startswith("static"):
static = True
else:
static = False
cpp_type = " ".join(original_code.split("=")[0].strip().split(" ")[0:-1])
print(cpp_type)
if static:
new_code = "static auto "+ " ".join(original_code.split(" ")[2:])
else:
new_code = "auto "+ " ".join(original_code.split(" ")[1:])
print(new_code)
if True:
with open(path, "r") as f:
filedata = f.read()
filedata = filedata.replace(original_code, new_code)
with open(path, "w") as f:
f.write(filedata)
2024-01-17 12:50:00 +00:00
..
2024-01-11 14:51:42 +02:00
2023-10-29 13:34:19 +00:00
2023-10-29 13:34:19 +00:00
2024-01-08 16:24:47 +02:00
2024-01-11 12:46:32 +02:00
2023-12-20 16:55:38 +02:00
2023-12-19 19:01:56 +02:00
2023-12-20 16:55:38 +02:00
2023-12-20 16:55:38 +02:00
2023-12-20 16:55:38 +02:00
2023-12-20 16:55:38 +02:00
2023-12-20 16:55:38 +02:00
2023-12-19 19:01:56 +02:00
2023-12-20 16:55:38 +02:00
2023-12-19 19:01:56 +02:00
2024-01-11 12:46:32 +02:00
2023-12-19 19:01:56 +02:00
2023-11-02 13:52:58 +02:00
2023-11-02 13:52:58 +02:00
2024-01-10 00:22:23 +00:00
2023-09-19 13:31:57 +03:00
2024-01-10 00:22:23 +00:00
2023-07-21 15:47:42 +03:00
2023-12-07 13:57:16 +02:00
2023-12-07 13:57:16 +02:00
2024-01-17 12:50:00 +00:00
2023-04-05 22:33:12 +03:00
2023-12-20 16:55:38 +02:00
2023-12-20 16:55:38 +02:00
2023-12-07 13:57:16 +02:00
2023-12-07 13:57:16 +02:00
2024-01-11 12:46:32 +02:00
2024-01-11 12:46:32 +02:00
2023-07-18 21:01:55 +03:00
2023-07-18 21:01:55 +03:00
2023-10-16 00:04:29 +02:00
2023-10-16 00:04:29 +02:00
2023-06-20 19:58:05 +03:00
2023-06-20 19:58:05 +03:00
2023-12-09 18:09:10 +02:00
2023-11-13 19:06:56 +02:00
2024-01-16 19:02:39 +00:00
2023-10-14 12:08:38 +02:00