2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-12-24 02:05:12 +01:00

Merge pull request #1721 from mclayton7/waf-1.9

Fix qt4.py to use deque instead of list
This commit is contained in:
ita1024 2016-03-31 07:36:28 +02:00
commit a0bd260957

View File

@ -155,7 +155,7 @@ class qxx(Task.classes['cxx']):
# direct injection in the build phase (safe because called from the main thread)
gen = self.generator.bld.producer
gen.outstanding.insert(0, tsk)
gen.outstanding.appendleft(tsk)
gen.total += 1
return tsk