1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/test/battle
Alexander Wilms 1b85abb508 Use auto instead of redundant type in initializations using new
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)
2024-01-16 21:40:53 +00:00
..
battle_UnitTest.cpp Spells configuration version 2 (effect-based) 2018-02-08 11:37:21 +03:00
BattleHexTest.cpp Define each identifier in a dedicated statement 2024-01-10 00:22:23 +00:00
CBattleInfoCallbackTest.cpp Use auto instead of redundant type in initializations using new 2024-01-16 21:40:53 +00:00
CHealthTest.cpp Fix Lua and test building 2023-10-23 16:05:38 +03:00
CUnitStateMagicTest.cpp Disable broken tests so the working ones don't rot 2024-01-08 19:13:44 +00:00
CUnitStateTest.cpp Renamed new types for consistency with code style 2023-10-22 16:55:19 +03:00