diff options
| -rw-r--r-- | mesonbuild/arglist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/arglist.py b/mesonbuild/arglist.py index 3d9bb722a..4f4d18c55 100644 --- a/mesonbuild/arglist.py +++ b/mesonbuild/arglist.py @@ -106,7 +106,7 @@ class CompilerArgs(T.MutableSequence[str]): self._container: T.List[str] = list(iterable) if iterable is not None else [] self.pre: T.Deque[str] = collections.deque() - self.post: T.Deque[str] = collections.deque() + self.post: T.List[str] = [] self.needs_override_check: bool = False # Flush the saved pre and post list into the _container list |
