diff options
author | Caolán McNamara <cmc@openoffice.org> | 2010-01-09 14:59:14 +0000 |
---|---|---|
committer | Caolán McNamara <cmc@openoffice.org> | 2010-01-09 14:59:14 +0000 |
commit | 28159e10f92b56dadb2cec057532f41f4fa51fad (patch) | |
tree | 1e3079eb52bcd46899338310d131dcbabb9cb0a8 /soltools/mkdepend/collectdircontent.cxx | |
parent | 6fbff3306d63beb13f4ba8f1d44e815201284f2f (diff) |
cmcfixes69: #i108178#: delete allocated object (removes unused code warning from callcatcher)
Diffstat (limited to 'soltools/mkdepend/collectdircontent.cxx')
-rwxr-xr-x | soltools/mkdepend/collectdircontent.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/soltools/mkdepend/collectdircontent.cxx b/soltools/mkdepend/collectdircontent.cxx index 691996d56cca..c9308faf0562 100755 --- a/soltools/mkdepend/collectdircontent.cxx +++ b/soltools/mkdepend/collectdircontent.cxx @@ -73,6 +73,10 @@ extern "C" { return new IncludesCollection; } + void delete_IncludesCollection(IncludesCollection *m) { + delete m; + } + int call_IncludesCollection_exists(IncludesCollection* m, const char * filePath) { return m->exists(filePath); } |