Files
servo/components/style/gecko_bindings/sugar/ns_com_ptr.rs
2016-10-02 17:51:14 +02:00

19 lines
499 B
Rust

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use gecko_bindings::structs::nsCOMPtr;
impl<T> nsCOMPtr<T> {
#[cfg(debug_assertions)]
#[inline]
pub fn raw(&self) -> *mut T {
self.mRawPtr
}
#[cfg(not(debug_assertions))]
#[inline]
pub fn raw(&self) -> *mut T {
self._base.mRawPtr as *mut _
}
}