mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
1b85abb508
grep -r --include \*.h --include \*.cpp "=" * | grep -v "auto\|int\|char\|bool\|float|\double\|for\|if\|googletest\|fuzzylite\|size_t\|using\|return\|{\|}\|= \"\|= tr(\|virtual\|void" | grep -Po ".*[^ ]+ [^ ]+ [^ ]*[ ]*=.*;" | grep -v "float\|nullptr" | grep "new" | grep -v "AI/FuzzyLite" | grep \( | grep "= new" > 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 = line.split(":")[1].strip() if "new " in original_code: cpp_type = original_code.split(" ")[0] if original_code.count(cpp_type) == 2: print() print(path) print(original_code) new_code = "auto "+" ".join(original_code.split(" ")[1:]) print(new_code) 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) |
||
---|---|---|
.. | ||
aboutProject | ||
firstLaunch | ||
icons | ||
ios | ||
lobby | ||
modManager | ||
settingsView | ||
translation | ||
CMakeLists.txt | ||
eu.vcmi.VCMI.metainfo.xml | ||
jsonutils.cpp | ||
jsonutils.h | ||
languages.cpp | ||
languages.h | ||
launcherdirs.cpp | ||
launcherdirs.h | ||
main.cpp | ||
main.h | ||
mainwindow_moc.cpp | ||
mainwindow_moc.h | ||
mainwindow_moc.ui | ||
StdInc.cpp | ||
StdInc.h | ||
updatedialog_moc.cpp | ||
updatedialog_moc.h | ||
updatedialog_moc.ui | ||
VCMI_launcher.cbp | ||
VCMI_launcher.ico | ||
VCMI_launcher.rc | ||
VCMI_launcher.vcxproj | ||
vcmilauncher.desktop |