generic-tracing: cleanups

Change-Id: I5c3d1131248910228cb4fee44cf107c750c01e21
This commit is contained in:
Horst Schirmeier
2014-02-11 15:27:32 +01:00
parent 85152238da
commit 836325e74b
2 changed files with 31 additions and 32 deletions

View File

@ -8,8 +8,6 @@
#include <string>
#include <vector>
class GenericTracing : public fail::ExperimentFlow {
std::string start_symbol;
std::string stop_symbol;
@ -31,7 +29,7 @@ public:
void parseOptions();
bool run();
GenericTracing() : full_trace(false), m_log("GenericTracing", false) {};
GenericTracing() : full_trace(false), m_log("GenericTracing", false) {}
};
#endif // __TRACING_TEST_HPP__