diff options
author | David Tardon <dtardon@redhat.com> | 2010-12-23 11:21:00 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2010-12-23 11:21:00 +0100 |
commit | d48bcc67d3a1cc5a551e3b70af74cfb3a8d8c795 (patch) | |
tree | 0f8274f02bf6d3b5ccd37500874bc411d49573cf | |
parent | 68cfe2f6e1c5f3ba924d51671e1fda35f74b3200 (diff) |
suppress compiler warning
-rw-r--r-- | sal/inc/osl/file.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/inc/osl/file.hxx b/sal/inc/osl/file.hxx index 6bb06de238e8..26f60c1f8659 100644 --- a/sal/inc/osl/file.hxx +++ b/sal/inc/osl/file.hxx @@ -1595,7 +1595,7 @@ public: class DirectoryCreationObserver { public: - virtual ~DirectoryCreationObserver() {}; + virtual ~DirectoryCreationObserver() {} /** This method will be called when a new directory has been created and needs to be overwritten by derived classes. @@ -1693,7 +1693,7 @@ public: @see close() */ - inline sal_Bool isOpen() { return _pData != NULL; }; + inline sal_Bool isOpen() { return _pData != NULL; } /** Close a directory. |