Skip to content
Snippets Groups Projects
Commit 8db4f5f4 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

workaround bug in gcc's effc++ option.

git-svn-id: http://root.cern.ch/svn/root/trunk@21050 27541ba8-7e3a-0410-8455-c3a389f83636
parent 53c2852f
Branches
Tags
No related merge requests found
...@@ -213,7 +213,7 @@ struct RedirectHandle_t { ...@@ -213,7 +213,7 @@ struct RedirectHandle_t {
Int_t fStdOutDup; // Duplicated descriptor for stdout Int_t fStdOutDup; // Duplicated descriptor for stdout
Int_t fStdErrDup; // Duplicated descriptor for stderr Int_t fStdErrDup; // Duplicated descriptor for stderr
Int_t fReadOffSet; // Offset where to start reading the file (used by ShowOutput(...)) Int_t fReadOffSet; // Offset where to start reading the file (used by ShowOutput(...))
RedirectHandle_t(const char *n = 0) : fFile(n), fStdOutDup(-1), RedirectHandle_t(const char *n = 0) : fFile(n), fStdOutTty(), fStdErrTty(), fStdOutDup(-1),
fStdErrDup(-1), fReadOffSet(-1) { } fStdErrDup(-1), fReadOffSet(-1) { }
void Reset() { fFile = ""; fStdOutTty = ""; fStdErrTty = ""; void Reset() { fFile = ""; fStdOutTty = ""; fStdErrTty = "";
fStdOutDup = -1; fStdErrDup = -1; fReadOffSet = -1; } fStdOutDup = -1; fStdErrDup = -1; fReadOffSet = -1; }
...@@ -281,7 +281,7 @@ protected: ...@@ -281,7 +281,7 @@ protected:
TString fBuildArch; //Architecure for which ROOT was built (passed to ./configure) TString fBuildArch; //Architecure for which ROOT was built (passed to ./configure)
TString fBuildCompiler; // Compiler used to build this ROOT TString fBuildCompiler; // Compiler used to build this ROOT
TString fBuildCompilerVersion; //Compiler version used to build this ROOT TString fBuildCompilerVersion; //Compiler version used to build this ROOT
TString fBuildNode; //Detailed information where ROOT was built TString fBuildNode; //Detailed information where ROOT was built
TString fBuildDir; //Location where to build ACLiC shared library and use as scratch area. TString fBuildDir; //Location where to build ACLiC shared library and use as scratch area.
TString fFlagsDebug; //Flags for debug compilation TString fFlagsDebug; //Flags for debug compilation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment