From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1643) id 85B7F384A804; Thu, 27 Oct 2022 18:55:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 85B7F384A804 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666896940; bh=H78XCzpcfeiKxvAGsbMgWXDWWmLSG/bQkIaEIK0NHng=; h=From:To:Subject:Date:From; b=iOCfEWSHptF8JRMDx1Ciqt16HfkYeBmNl91hk1IwV0bQjfKTKBF0vd0skSE6pz1bc hTmX/oK7sLaMprtKusCEWc/V8G+KtN180gUXviRM+yaCmCA1omiVNK5xAhkQliHYEe w3DKIOalDpKWzCnN67geHKKk2ohADvDMbyqxo1LA= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Thomas Schwinge To: gcc-cvs@gcc.gnu.org Subject: [gcc/devel/rust/master] attribute checker: Remove system includes X-Act-Checkin: gcc X-Git-Author: Arthur Cohen X-Git-Refname: refs/heads/devel/rust/master X-Git-Oldrev: 0b7cd54d63c2f8728711f5cb27f6ee66f4862eca X-Git-Newrev: c5454530ec4fe8b3c5f2f08191aece5544dec2d2 Message-Id: <20221027185540.85B7F384A804@sourceware.org> Date: Thu, 27 Oct 2022 18:55:39 +0000 (GMT) List-Id: https://gcc.gnu.org/g:c5454530ec4fe8b3c5f2f08191aece5544dec2d2 commit c5454530ec4fe8b3c5f2f08191aece5544dec2d2 Author: Arthur Cohen Date: Wed Oct 5 09:49:59 2022 +0200 attribute checker: Remove system includes Diff: --- gcc/rust/util/rust-attributes.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/rust/util/rust-attributes.cc b/gcc/rust/util/rust-attributes.cc index 509f70fe4db..64ed042324c 100644 --- a/gcc/rust/util/rust-attributes.cc +++ b/gcc/rust/util/rust-attributes.cc @@ -16,11 +16,11 @@ // along with GCC; see the file COPYING3. If not see // . +#include "rust-system.h" #include "rust-attributes.h" #include "rust-ast.h" #include "rust-ast-full.h" #include "rust-diagnostics.h" -#include "safe-ctype.h" namespace Rust { namespace Analysis {