summaryrefslogtreecommitdiffstats
path: root/juniper/src/test/mcandTest.h
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-05-02 11:05:57 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-05-02 11:09:00 +0200
commitc62a40b368c3f87f2af75038974961e83a48a779 (patch)
tree557a2e2241ef5d19d4236067dd3c05a868752b7a /juniper/src/test/mcandTest.h
parentc638dea6f73bb3b250326f2c386b18a2120abfc3 (diff)
misc cleanup from Baldersheim
* include file cleanup * only do LOG_SETUP as needed * remove "virtual" where "override" is specified also * some minor reformatting and indentation changes
Diffstat (limited to 'juniper/src/test/mcandTest.h')
-rw-r--r--juniper/src/test/mcandTest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/juniper/src/test/mcandTest.h b/juniper/src/test/mcandTest.h
index 754c18ee9dd..3fc32ee9f5d 100644
--- a/juniper/src/test/mcandTest.h
+++ b/juniper/src/test/mcandTest.h
@@ -196,7 +196,7 @@ protected:
* print_progress which includes backspace does not work.
* We'll use a single '.' instead.
*/
- virtual void print_progress() override { *m_osptr << '.' << std::flush; }
+ void print_progress() override { *m_osptr << '.' << std::flush; }
public:
@@ -207,7 +207,7 @@ public:
* main entry points
*************************************************************************/
void Run(MethodContainer::iterator &itr);
- virtual void Run() override;
+ void Run() override;
void Run(const char *method);
void Run(int argc, char* argv[]);
};