about summary refs log tree commit diff
path: root/src/libsyntax/expand
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsyntax/expand')
-rw-r--r--src/libsyntax/expand/allocator.rs4
-rw-r--r--src/libsyntax/expand/mod.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/expand/allocator.rs b/src/libsyntax/expand/allocator.rs
index 7ab8e370926..fbeeb47c23e 100644
--- a/src/libsyntax/expand/allocator.rs
+++ b/src/libsyntax/expand/allocator.rs
@@ -1,6 +1,6 @@
 use crate::{ast, attr, visit};
-use syntax_pos::symbol::{sym, Symbol};
-use syntax_pos::Span;
+use rustc_span::symbol::{sym, Symbol};
+use rustc_span::Span;
 
 #[derive(Clone, Copy)]
 pub enum AllocatorKind {
diff --git a/src/libsyntax/expand/mod.rs b/src/libsyntax/expand/mod.rs
index 761dc2f5684..50df8fa39ed 100644
--- a/src/libsyntax/expand/mod.rs
+++ b/src/libsyntax/expand/mod.rs
@@ -1,7 +1,7 @@
 //! Definitions shared by macros / syntax extensions and e.g. librustc.
 
 use crate::ast::Attribute;
-use syntax_pos::symbol::sym;
+use rustc_span::symbol::sym;
 
 pub mod allocator;