forked from OSchip/llvm-project
[llvm-exegesis] Mark destructor virtual after r344695
This was causing a -Wnon-virtual-dtor warning. llvm-svn: 344721
This commit is contained in:
parent
33a2f5e8dd
commit
11bc3a18e2
|
@ -68,7 +68,7 @@ public:
|
|||
// context.
|
||||
class FunctionExecutor {
|
||||
public:
|
||||
~FunctionExecutor();
|
||||
virtual ~FunctionExecutor();
|
||||
virtual llvm::Expected<int64_t>
|
||||
runAndMeasure(const char *Counters) const = 0;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue