diff options
| author | Greg Clayton <gclayton@apple.com> | 2010-09-24 23:07:41 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2010-09-24 23:07:41 +0000 |
| commit | 5573fde3426c91332afcd4180193e14cc0a01c32 (patch) | |
| tree | 0147ffc9fedadf9dbd1c15f133e28a3064190366 /lldb/source/Expression/ClangUtilityFunction.cpp | |
| parent | cdf612277a017cc23f7bf8af25185d24f9afe0ab (diff) | |
| download | bcm5719-llvm-5573fde3426c91332afcd4180193e14cc0a01c32.tar.gz bcm5719-llvm-5573fde3426c91332afcd4180193e14cc0a01c32.zip | |
Cleaned a few build related things up:
Added a virtual destructor to ClangUtilityFunction with a body to it cleans
itself up.
Moved our SharingPtr into the lldb_private namespace to keep it easy to make
an exports file that exports only what is needed ("lldb::*").
llvm-svn: 114771
Diffstat (limited to 'lldb/source/Expression/ClangUtilityFunction.cpp')
| -rw-r--r-- | lldb/source/Expression/ClangUtilityFunction.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Expression/ClangUtilityFunction.cpp b/lldb/source/Expression/ClangUtilityFunction.cpp index 310cac9d571..0080347543b 100644 --- a/lldb/source/Expression/ClangUtilityFunction.cpp +++ b/lldb/source/Expression/ClangUtilityFunction.cpp @@ -44,6 +44,10 @@ ClangUtilityFunction::ClangUtilityFunction (const char *text, { } +ClangUtilityFunction::~ClangUtilityFunction () +{ +} + //------------------------------------------------------------------ /// Install the utility function into a process /// |

