File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class HipBinAmd : public HipBinBase {
51
51
52
52
public:
53
53
HipBinAmd ();
54
- virtual ~HipBinAmd () = default ;
54
+ ~HipBinAmd () override = default ;
55
55
virtual bool detectPlatform ();
56
56
virtual void constructCompilerPath ();
57
57
virtual const string& getCompilerPath () const ;
Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ enum HipBinCommand {
203
203
class HipBinBase {
204
204
public:
205
205
HipBinBase ();
206
+ virtual ~HipBinBase () = default ;
206
207
// Interface functions
207
208
virtual void constructCompilerPath () = 0;
208
209
virtual void printFull () = 0;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class HipBinNvidia : public HipBinBase {
37
37
38
38
public:
39
39
HipBinNvidia ();
40
- virtual ~HipBinNvidia () = default ;
40
+ ~HipBinNvidia () override = default ;
41
41
virtual bool detectPlatform ();
42
42
virtual void constructCompilerPath ();
43
43
virtual const string& getCompilerPath () const ;
You can’t perform that action at this time.
0 commit comments