From 3e0683ed51d4d89ad0f87986eb3b55bc42b3fc41 Mon Sep 17 00:00:00 2001 From: Andrew McCreight Date: Wed, 13 Aug 2014 11:36:15 -0700 Subject: [PATCH] Bug 1024795, part 3 - Generate nsTArray instead of InfallibleTArray in lower.py. r=bent --- ipc/ipdl/ipdl/lower.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc/ipdl/ipdl/lower.py b/ipc/ipdl/ipdl/lower.py index 7653f803778..413a207d53e 100644 --- a/ipc/ipdl/ipdl/lower.py +++ b/ipc/ipdl/ipdl/lower.py @@ -332,7 +332,7 @@ def _refptrTake(expr): return ExprCall(ExprSelect(expr, '.', 'take')) def _cxxArrayType(basetype, const=0, ref=0): - return Type('InfallibleTArray', T=basetype, const=const, ref=ref) + return Type('nsTArray', T=basetype, const=const, ref=ref) def _cxxFallibleArrayType(basetype, const=0, ref=0): return Type('FallibleTArray', T=basetype, const=const, ref=ref)