Removed duplicated argument

This commit is contained in:
mpilman 2019-10-16 11:31:44 -07:00 committed by Alex Miller
parent 62cef2c383
commit 00bbd84157

View File

@ -20,7 +20,6 @@ def actorCommand(cmd: str, build:str, src: str):
if m1 is None:
return cmd
cmd1 = r1.sub('\\1actor.cpp', cmd)
cmd1 += " -Wno-unknown-attributes" # Make IDEs not warn on our custom [[flow_*]] attributes
return rreplace(cmd1, build, src)