From 6ad05639e31a769d47a19d516b23be02e0063b43 Mon Sep 17 00:00:00 2001 From: Adrian Taylor Date: Tue, 27 Jun 2023 21:16:45 +0100 Subject: [PATCH] Remove some minisynning --- integration-tests/src/lib.rs | 2 +- integration-tests/tests/code_checkers.rs | 2 +- integration-tests/tests/integration_test.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/integration-tests/src/lib.rs b/integration-tests/src/lib.rs index 6b26f792a..fe21611b2 100644 --- a/integration-tests/src/lib.rs +++ b/integration-tests/src/lib.rs @@ -15,7 +15,7 @@ use std::{ sync::Mutex, }; -use crate::minisyn::Token; +use syn::Token; use autocxx_engine::{ Builder, BuilderBuild, BuilderContext, BuilderError, RebuildDependencyRecorder, HEADER, }; diff --git a/integration-tests/tests/code_checkers.rs b/integration-tests/tests/code_checkers.rs index 2df999f4b..942665ee1 100644 --- a/integration-tests/tests/code_checkers.rs +++ b/integration-tests/tests/code_checkers.rs @@ -12,7 +12,7 @@ use std::{ path::PathBuf, }; -use crate::minisyn::Item; +use syn::Item; use itertools::{Either, Itertools}; use proc_macro2::TokenStream; use quote::ToTokens; diff --git a/integration-tests/tests/integration_test.rs b/integration-tests/tests/integration_test.rs index fa8d4d34b..6bddbb9e9 100644 --- a/integration-tests/tests/integration_test.rs +++ b/integration-tests/tests/integration_test.rs @@ -6,7 +6,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use crate::minisyn::{parse_quote, Token}; +use syn::{parse_quote, Token}; use crate::{ builder_modifiers::{ make_clang_arg_adder, make_clang_optional_arg_adder, make_cpp17_adder, EnableAutodiscover,