diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-06 05:39:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-06 05:39:03 +0000 |
commit | a7ac3cfabea94734a95d5bfcfc0e9f98c1120c16 (patch) | |
tree | 5ac0fd5bcf79117d970ce097503d9c4472841a52 /support | |
parent | 3f781341f97da31bfee55bc221ff58b76e7a60df (diff) | |
download | external_llvm-a7ac3cfabea94734a95d5bfcfc0e9f98c1120c16.zip external_llvm-a7ac3cfabea94734a95d5bfcfc0e9f98c1120c16.tar.gz external_llvm-a7ac3cfabea94734a95d5bfcfc0e9f98c1120c16.tar.bz2 |
All good classes with virtual functions should have virtual dtors...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'support')
-rw-r--r-- | support/tools/TableGen/TableGenBackend.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/tools/TableGen/TableGenBackend.h b/support/tools/TableGen/TableGenBackend.h index ae71d2c..bd13203 100644 --- a/support/tools/TableGen/TableGenBackend.h +++ b/support/tools/TableGen/TableGenBackend.h @@ -14,6 +14,7 @@ class Record; class RecordKeeper; struct TableGenBackend { + virtual ~TableGenBackend() {} // run - All TableGen backends should implement the run method, which should // be the main entry point. |