mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
style: Document the nsCOMPtr sugar.
This commit is contained in:
parent
bcac8265c9
commit
9b6cf8dc1b
1 changed files with 5 additions and 0 deletions
|
@ -1,15 +1,20 @@
|
|||
/* 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/. */
|
||||
|
||||
//! Little helpers for `nsCOMPtr`.
|
||||
|
||||
use gecko_bindings::structs::nsCOMPtr;
|
||||
|
||||
impl<T> nsCOMPtr<T> {
|
||||
/// Get this pointer as a raw pointer.
|
||||
#[cfg(debug_assertions)]
|
||||
#[inline]
|
||||
pub fn raw(&self) -> *mut T {
|
||||
self.mRawPtr
|
||||
}
|
||||
|
||||
/// Get this pointer as a raw pointer.
|
||||
#[cfg(not(debug_assertions))]
|
||||
#[inline]
|
||||
pub fn raw(&self) -> *mut T {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue