Skip to content
Snippets Groups Projects
Commit f827a09b authored by Francois Bleibel's avatar Francois Bleibel
Browse files

Changed name of the traces file.

parent e5d6eb12
No related branches found
No related tags found
No related merge requests found
......@@ -38,18 +38,18 @@
using namespace dynamicgraph;
#ifdef WIN32
const char * DebugTrace::DEBUG_FILENAME_DEFAULT = "c:/tmp/traces_dynamicgraph.txt";
const char * DebugTrace::DEBUG_FILENAME_DEFAULT = "c:/tmp/dynamic-graph-traces.txt";
#else /*WIN32*/
const char * DebugTrace::DEBUG_FILENAME_DEFAULT = "/tmp/traces_dynamicgraph.txt";
const char * DebugTrace::DEBUG_FILENAME_DEFAULT = "/tmp/dynamic-graph-traces.txt";
#endif /*WIN32*/
#ifdef VP_DEBUG
#ifdef WIN32
std::ofstream dg_debugfile( "C:/tmp/traces_dynamicgraph.txt", std::ios::trunc&std::ios::out );
std::ofstream dg_debugfile( "C:/tmp/dynamic-graph-traces.txt", std::ios::trunc&std::ios::out );
#else /*WIN32*/
std::ofstream dg_debugfile( "/tmp/traces_dynamicgraph.txt", std::ios::trunc&std::ios::out );
std::ofstream dg_debugfile( "/tmp/dynamic-graph-traces.txt", std::ios::trunc&std::ios::out );
#endif /*WIN32*/
#else
std::ofstream dg_debugfile; //( "/dev/null", std::ios::trunc&std::ios::out );
......
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