aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/codegen/Configuration.py
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-01-01 12:20:31 +0100
committerMs2ger <ms2ger@gmail.com>2015-01-01 20:36:43 +0100
commit1290c1879415c80b374bc3ff6378aec899850048 (patch)
tree0d89e9085b96ddf1b44d737d7207f33a98a29918 /components/script/dom/bindings/codegen/Configuration.py
parent95ec20bd976c5fe7b9c56e150cf7e909b27fe624 (diff)
downloadservo-1290c1879415c80b374bc3ff6378aec899850048.tar.gz
servo-1290c1879415c80b374bc3ff6378aec899850048.zip
Remove the 'b lifetime from Root.
It does not add any safety, as the reference is constructed from a raw pointer without limiting the lifetime in any way.
Diffstat (limited to 'components/script/dom/bindings/codegen/Configuration.py')
-rw-r--r--components/script/dom/bindings/codegen/Configuration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/codegen/Configuration.py b/components/script/dom/bindings/codegen/Configuration.py
index 6ebe6467e52..ac103c86378 100644
--- a/components/script/dom/bindings/codegen/Configuration.py
+++ b/components/script/dom/bindings/codegen/Configuration.py
@@ -156,7 +156,7 @@ class Descriptor(DescriptorProvider):
self.needsRooting = True
self.returnType = "Temporary<%s>" % ifaceName
self.argumentType = "JSRef<%s>" % ifaceName
- self.memberType = "Root<'b, %s>" % ifaceName
+ self.memberType = "Root<%s>" % ifaceName
self.nativeType = "JS<%s>" % ifaceName
self.concreteType = ifaceName