Skip to content

Commit

Permalink
Adapts WeightMatrixMonitor to string conform filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Friedemann Zenke committed Apr 8, 2014
1 parent 6437b97 commit 6739111
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/WeightMatrixMonitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include "WeightMatrixMonitor.h"

WeightMatrixMonitor::WeightMatrixMonitor(Connection * source, char * filename, AurynFloat stepsize) : Monitor(filename)
WeightMatrixMonitor::WeightMatrixMonitor(Connection * source, string filename, AurynFloat stepsize) : Monitor(filename)
{
init(source,stepsize);
}
Expand Down
2 changes: 1 addition & 1 deletion src/WeightMatrixMonitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class WeightMatrixMonitor : protected Monitor
void init(Connection * source, AurynFloat stepsize);

public:
WeightMatrixMonitor(Connection * source, char * filename, AurynFloat stepsize=600.);
WeightMatrixMonitor(Connection * source, string filename, AurynFloat stepsize=600.);
virtual ~WeightMatrixMonitor();
void propagate();
};
Expand Down

0 comments on commit 6739111

Please sign in to comment.