diff --git a/bindgen/ir/function.rs b/bindgen/ir/function.rs index 1a177bc690..33cf68bd69 100644 --- a/bindgen/ir/function.rs +++ b/bindgen/ir/function.rs @@ -97,7 +97,7 @@ pub struct Function { /// The linkage of the function. linkage: Linkage, - /// Whether this function is inlined or not + /// Whether this function is inlined or not. is_inlined: bool, } @@ -153,6 +153,7 @@ impl Function { self.linkage } + /// Whether this function is inlined or not. pub fn is_inlined(&self) -> bool { self.is_inlined }