diff options
-rw-r--r-- | src/clang.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/clang.rs b/src/clang.rs index 003ed2a6..12ac46ce 100644 --- a/src/clang.rs +++ b/src/clang.rs @@ -1540,15 +1540,6 @@ impl Drop for Index { } } -/// A token emitted by clang's lexer. -#[derive(Debug)] -pub struct Token { - /// The kind of token this is. - pub kind: CXTokenKind, - /// A display name for this token. - pub spelling: String, -} - /// A translation unit (or "compilation unit"). pub struct TranslationUnit { x: CXTranslationUnit, |