Removed Runner class

- it served no purpose - split into functions instead
This commit is contained in:
Phil Nash
2015-07-28 18:55:11 +01:00
parent 85c8074784
commit 34fa25ed2f
2 changed files with 66 additions and 82 deletions

View File

@@ -52,8 +52,7 @@ namespace Catch {
return *this;
}
void swap( Ptr& other ) { std::swap( m_p, other.m_p ); }
T* get() { return m_p; }
const T* get() const{ return m_p; }
T* get() const{ return m_p; }
T& operator*() const { return *m_p; }
T* operator->() const { return m_p; }
bool operator !() const { return m_p == CATCH_NULL; }