summaryrefslogtreecommitdiff
path: root/src/ir/function.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir/function.rs')
-rw-r--r--src/ir/function.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ir/function.rs b/src/ir/function.rs
index 299bd65c..9865997d 100644
--- a/src/ir/function.rs
+++ b/src/ir/function.rs
@@ -1,6 +1,5 @@
//! Intermediate representation for C/C++ functions and methods.
-use super::comment;
use super::context::{BindgenContext, ItemId};
use super::dot::DotAttributes;
use super::item::Item;
@@ -406,7 +405,7 @@ impl ClangSubItemParser for Function {
mangled_name = None;
}
- let comment = cursor.raw_comment().map(comment::preprocess);
+ let comment = cursor.raw_comment();
let function = Self::new(name, mangled_name, sig, comment);
Ok(ParseResult::New(function, Some(cursor)))