Skip to content
Snippets Groups Projects
Commit 4ee6b5c3 authored by Rene Brun's avatar Rene Brun
Browse files

Add special case for Windows. demofile= "$TMP/bench.root";

git-svn-id: http://root.cern.ch/svn/root/trunk@4745 27541ba8-7e3a-0410-8455-c3a389f83636
parent 071a39cf
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,11 @@
#include "TBench.h"
THit hit;
const char *demofile = "/tmp/bench.root";
#ifdef R__WIN32
const char *demofile = "$TMP/bench.root";
#else
const char *demofile = "/tmp/bench.root";
#endif
//-------------------------------------------------------------
ClassImp(THit)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment