summaryrefslogtreecommitdiff
path: root/src/ir/enum_ty.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir/enum_ty.rs')
-rw-r--r--src/ir/enum_ty.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ir/enum_ty.rs b/src/ir/enum_ty.rs
index 731961a6..38de01d9 100644
--- a/src/ir/enum_ty.rs
+++ b/src/ir/enum_ty.rs
@@ -1,6 +1,5 @@
//! Intermediate representation for C/C++ enumerations.
-use super::comment;
use super::context::{BindgenContext, ItemId};
use super::item::Item;
use super::ty::TypeKind;
@@ -114,7 +113,7 @@ impl Enum {
})
});
- let comment = cursor.raw_comment().map(comment::preprocess);
+ let comment = cursor.raw_comment();
variants.push(EnumVariant::new(name,
comment,
val,