File tree 2 files changed +0
-9
lines changed
include/cucumber-cpp/internal
2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,6 @@ class CUCUMBER_CPP_EXPORT CallableStep {
22
22
23
23
class CUCUMBER_CPP_EXPORT Hook {
24
24
public:
25
- // [Visual Studio] silence false positive "warning C4265: class has virtual
26
- // functions, but destructor is not virtual" requiring virtual destructors
27
- // for every class that has virtual functions.
28
25
virtual ~Hook () {}
29
26
30
27
void setTags (const std::string &csvTagNotation);
Original file line number Diff line number Diff line change @@ -103,9 +103,6 @@ class CUCUMBER_CPP_EXPORT StepInfo : public boost::enable_shared_from_this<StepI
103
103
public:
104
104
StepInfo (const std::string &stepMatcher, const std::string source);
105
105
106
- // [Visual Studio] silence false positive "warning C4265: class has virtual
107
- // functions, but destructor is not virtual" requiring virtual destructors
108
- // for every class that has virtual functions.
109
106
virtual ~StepInfo () {}
110
107
111
108
SingleStepMatch matches (const std::string &stepDescription) const ;
@@ -121,9 +118,6 @@ class CUCUMBER_CPP_EXPORT StepInfo : public boost::enable_shared_from_this<StepI
121
118
122
119
class CUCUMBER_CPP_EXPORT BasicStep {
123
120
public:
124
- // [Visual Studio] silence false positive "warning C4265: class has virtual
125
- // functions, but destructor is not virtual" requiring virtual destructors
126
- // for every class that has virtual functions.
127
121
virtual ~BasicStep () {}
128
122
129
123
InvokeResult invoke (const InvokeArgs *pArgs);
You can’t perform that action at this time.
0 commit comments