From ca9783431853d81bb55b32b31d38063a038ab14e Mon Sep 17 00:00:00 2001 From: Rene Brun <Rene.Brun@cern.ch> Date: Wed, 25 Jun 2003 14:27:57 +0000 Subject: [PATCH] From Philippe: This patch adds support for the .c++ extension for the dictionary name. git-svn-id: http://root.cern.ch/svn/root/trunk@6778 27541ba8-7e3a-0410-8455-c3a389f83636 --- utils/src/rootcint.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/src/rootcint.cxx b/utils/src/rootcint.cxx index 62da28027f8..094fca47ffd 100644 --- a/utils/src/rootcint.cxx +++ b/utils/src/rootcint.cxx @@ -1,4 +1,4 @@ -// @(#)root/utils:$Name: $:$Id: rootcint.cxx,v 1.135 2003/05/27 16:31:09 rdm Exp $ +// @(#)root/utils:$Name: $:$Id: rootcint.cxx,v 1.136 2003/06/06 16:07:56 brun Exp $ // Author: Fons Rademakers 13/07/96 /************************************************************************* @@ -3457,7 +3457,7 @@ int main(int argc, char **argv) if (strstr(argv[ic],".C") || strstr(argv[ic],".cpp") || strstr(argv[ic],".cp") || strstr(argv[ic],".cxx") || - strstr(argv[ic],".cc")) { + strstr(argv[ic],".cc") || strstr(argv[ic],".c++")) { if ((fp = fopen(argv[ic], "r")) != 0) { fclose(fp); if (!force) { -- GitLab