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 {
5151
5252 public:
5353 HipBinAmd ();
54- virtual ~HipBinAmd () = default ;
54+ ~HipBinAmd () override = default ;
5555 virtual bool detectPlatform ();
5656 virtual void constructCompilerPath ();
5757 virtual const string& getCompilerPath () const ;
Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ enum HipBinCommand {
203203class HipBinBase {
204204 public:
205205 HipBinBase ();
206+ virtual ~HipBinBase () = default ;
206207 // Interface functions
207208 virtual void constructCompilerPath () = 0;
208209 virtual void printFull () = 0;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class HipBinNvidia : public HipBinBase {
3737
3838 public:
3939 HipBinNvidia ();
40- virtual ~HipBinNvidia () = default ;
40+ ~HipBinNvidia () override = default ;
4141 virtual bool detectPlatform ();
4242 virtual void constructCompilerPath ();
4343 virtual const string& getCompilerPath () const ;
You can’t perform that action at this time.
0 commit comments