From e7c9f200947605bf0cdf4c9c8fa74e3cc8f67e1c Mon Sep 17 00:00:00 2001
From: Fons Rademakers <Fons.Rademakers@cern.ch>
Date: Tue, 15 Aug 2000 10:55:51 +0000
Subject: [PATCH] G__process_cmd() has two new arguments in CINT 5.14.46. For
 the time being they not used in ProcessLine() yet.

git-svn-id: http://root.cern.ch/svn/root/trunk@476 27541ba8-7e3a-0410-8455-c3a389f83636
---
 meta/src/TCint.cxx | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/src/TCint.cxx b/meta/src/TCint.cxx
index 9ec1eb443a9..b34d6d7f6d7 100644
--- a/meta/src/TCint.cxx
+++ b/meta/src/TCint.cxx
@@ -1,4 +1,4 @@
-// @(#)root/meta:$Name:  $:$Id: TCint.cxx,v 1.3 2000/06/19 23:36:12 rdm Exp $
+// @(#)root/meta:$Name:  $:$Id: TCint.cxx,v 1.4 2000/06/20 06:47:05 brun Exp $
 // Author: Fons Rademakers   01/03/96
 
 /*************************************************************************
@@ -216,7 +216,7 @@ Int_t TCint::ProcessLine(const char *line)
       if (strstr(line,fantomline))
           TCint::UpdateAllCanvases();
       else
-          ret = G__process_cmd((char *)line, fPrompt, &fMore);
+          ret = G__process_cmd((char *)line, fPrompt, &fMore, 0, 0);
       gROOT->SetLineHasBeenProcessed();
    } else
       ret = ProcessLineAsynch(line);
@@ -381,7 +381,7 @@ void TCint::UpdateListOfGlobals()
          gROOT->fGlobals->Add(new TGlobal(a));
       }
    }
-}    
+}
 
 //______________________________________________________________________________
 void TCint::UpdateListOfGlobalFunctions()
@@ -403,7 +403,7 @@ void TCint::UpdateListOfGlobalFunctions()
          gROOT->fGlobalFunctions->Add(new TFunction(a));
       }
    }
-} 
+}
 
 //______________________________________________________________________________
 void TCint::UpdateListOfTypes()
@@ -456,7 +456,7 @@ void TCint::CreateListOfBaseClasses(TClass *cl)
          if (t.IsValid() && t.Name()) {
             a = new G__BaseClassInfo(t);
             cl->fBase->Add(new TBaseClass(a, cl));
-         }      
+         }
       }
    }
 }
-- 
GitLab