diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-12-11 11:27:28 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2016-12-12 07:31:45 +0000 |
commit | 424553f16092fa733855aec3eda2182ae095bb13 (patch) | |
tree | e084e1152a0016145406a6e285c6f4166ce5f550 | |
parent | 384f1c650183cc9f0449a37958042eb41cfb5431 (diff) |
starmath: Omit empty dtor
Change-Id: I7c905255627fb5286378e077d52932e9b184f054
Reviewed-on: https://gerrit.libreoffice.org/31853
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
-rw-r--r-- | starmath/source/smdll.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/starmath/source/smdll.cxx b/starmath/source/smdll.cxx index 64e16de81ec6..88d53c164fc8 100644 --- a/starmath/source/smdll.cxx +++ b/starmath/source/smdll.cxx @@ -46,7 +46,6 @@ namespace { public: SmDLL(); - ~SmDLL(); }; SmDLL::SmDLL() @@ -79,10 +78,6 @@ namespace SmElementsDockingWindowWrapper::RegisterChildWindow(true); } - SmDLL::~SmDLL() - { - } - struct theSmDLLInstance : public rtl::Static<SmDLL, theSmDLLInstance> {}; } |