Stub out missing method in geckolib

This commit is contained in:
Michael Howell 2016-08-12 16:53:36 -07:00
parent 748a573917
commit 8eb1a701db

View file

@ -162,6 +162,10 @@ impl<'ln> TNode for GeckoNode<'ln> {
unimplemented!()
}
fn dump_style(self) {
unimplemented!()
}
fn opaque(&self) -> OpaqueNode {
let ptr: uintptr_t = self.node as uintptr_t;
OpaqueNode(ptr)