(i)
| 3896 | for action in actions: |
| 3897 | |
| 3898 | def fixup_host_exe(i): |
| 3899 | if "$(OutDir)" in i: |
| 3900 | i = i.replace(".exe", "_host.exe") |
| 3901 | return i |
| 3902 | |
| 3903 | if generator_supports_multiple_toolsets: |
| 3904 | action["inputs"] = [fixup_host_exe(i) for i in action["inputs"]] |
no outgoing calls
no test coverage detected