forked from catchorg/Catch2
First cut of new filtering mechanism
This commit is contained in:
@@ -52,19 +52,14 @@ namespace Catch {
|
||||
return m_p;
|
||||
}
|
||||
|
||||
T& operator*(){
|
||||
T& operator*() const {
|
||||
return *m_p;
|
||||
}
|
||||
const T& operator*() const{
|
||||
return *m_p;
|
||||
|
||||
T* operator->() const {
|
||||
return m_p;
|
||||
}
|
||||
|
||||
T* operator->(){
|
||||
return m_p;
|
||||
}
|
||||
const T* operator->() const{
|
||||
return m_p;
|
||||
}
|
||||
bool operator !() const {
|
||||
return m_p == NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user