From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tobias Klauser Subject: [PATCH 5/5] shallow: remove unused #include "sigchain.h" Date: Thu, 22 Oct 2015 14:43:30 +0200 Message-ID: <1445517810-13998-6-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:54 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 1ZpFDg-00078L-FW for gcvg-git-2@plane.gmane.org; Thu, 22 Oct 2015 14:43:48 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757433AbbJVMnl (ORCPT ); Thu, 22 Oct 2015 08:43:41 -0400 Received: from mail.zhinst.com ([212.126.164.98]:42967 "EHLO mail.zhinst.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757279AbbJVMnk (ORCPT ); Thu, 22 Oct 2015 08:43:40 -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 6e122b44 (setup_temporary_shallow(): use tempfile module), no declarations from sigchain.h are used in read-cache.c anymore. Thus, remove the #include. Signed-off-by: Tobias Klauser --- shallow.c | 1 - 1 file changed, 1 deletion(-) diff --git a/shallow.c b/shallow.c index d49a3d6..4f9d667 100644 --- a/shallow.c +++ b/shallow.c @@ -10,7 +10,6 @@ #include "diff.h" #include "revision.h" #include "commit-slab.h" -#include "sigchain.h" static int is_shallow = -1; static struct stat_validity shallow_stat; -- 2.6.1.148.g7927db1