From ad74bfc260d19762556ef9e9d59b86ede0e1cc0f Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Fri, 9 Jun 2017 20:20:24 +0200 Subject: [PATCH] Unitetsts: reformats. --- test/unit/TestIOSystem.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/unit/TestIOSystem.h b/test/unit/TestIOSystem.h index a821c29..40d894a 100644 --- a/test/unit/TestIOSystem.h +++ b/test/unit/TestIOSystem.h @@ -53,14 +53,18 @@ static const string Sep = "/"; class TestIOSystem : public IOSystem { public: TestIOSystem() - : IOSystem() { + : IOSystem() { // empty } - virtual ~TestIOSystem() {} + virtual ~TestIOSystem() { + // empty + } + virtual bool Exists( const char* ) const { return true; } + virtual char getOsSeparator() const { return Sep[ 0 ]; } -- 2.7.4