From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tobias Klauser Subject: [PATCH 4/5] read-cache: remove unused #include "sigchain.h" Date: Thu, 22 Oct 2015 14:43:29 +0200 Message-ID: <1445517810-13998-5-git-send-email-tklauser@distanz.ch> References: <1445517810-13998-1-git-send-email-tklauser@distanz.ch> To: Junio C Hamano , Michael Haggerty , git@vger.kernel.org X-From: git-owner@vger.kernel.org Thu Oct 22 14:43:45 2015 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZpFDa-000717-FJ for gcvg-git-2@plane.gmane.org; Thu, 22 Oct 2015 14:43:42 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757311AbbJVMnh (ORCPT ); Thu, 22 Oct 2015 08:43:37 -0400 Received: from mail.zhinst.com ([212.126.164.98]:42962 "EHLO mail.zhinst.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757279AbbJVMne (ORCPT ); Thu, 22 Oct 2015 08:43:34 -0400 Received: from ziws06.zhinst.com ([10.42.0.71]) by mail.zhinst.com (Kerio Connect 8.5.2); Thu, 22 Oct 2015 14:43:30 +0200 X-Mailer: git-send-email 2.6.1.148.g7927db1 In-Reply-To: <1445517810-13998-1-git-send-email-tklauser@distanz.ch> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: After switching to use the tempfile module in commit f6ecc62d (write_shared_index(): use tempfile module), no declarations from sigchain.h are used in read-cache.c anymore. Thus, remove the #include. Signed-off-by: Tobias Klauser --- read-cache.c | 1 - 1 file changed, 1 deletion(-) diff --git a/read-cache.c b/read-cache.c index 87204a5..3ecb99d 100644 --- a/read-cache.c +++ b/read-cache.c @@ -17,7 +17,6 @@ #include "strbuf.h" #include "varint.h" #include "split-index.h" -#include "sigchain.h" #include "utf8.h" static struct cache_entry *refresh_cache_entry(struct cache_entry *ce, -- 2.6.1.148.g7927db1