summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-11 15:46:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-12 15:07:19 +0100
commit1be1e02d9af02e5ff47725eff65e4cbae96f7083 (patch)
tree4b518275253ceda207ebfece4221c2291ac544b5 /sal
parent203595a1b5b9f9ad02ee6fa7008dae17459a6315 (diff)
-Werror,-Wunused-function
Change-Id: I7fd09e4595be82ebd292042b09cc4c3e96b59d66
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/w32/file_dirvol.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/sal/osl/w32/file_dirvol.cxx b/sal/osl/w32/file_dirvol.cxx
index e0ca7990c0c1..04a62d163083 100644
--- a/sal/osl/w32/file_dirvol.cxx
+++ b/sal/osl/w32/file_dirvol.cxx
@@ -131,9 +131,6 @@ namespace /* private */
inline bool is_UNC_path(const sal_Unicode* path)
{ return (0 == wcsncmp(UNC_PREFIX, path, SAL_N_ELEMENTS(UNC_PREFIX) - 1)); }
- inline bool is_UNC_path(const rtl::OUString& path)
- { return is_UNC_path(path.getStr()); }
-
void parse_UNC_path(const sal_Unicode* path, UNCComponents* puncc)
{
OSL_PRECOND(is_UNC_path(path), "Precondition violated: No UNC path");
@@ -171,9 +168,6 @@ namespace /* private */
"Postcondition violated: Invalid UNC path detected");
}
- void parse_UNC_path(const rtl::OUString& path, UNCComponents* puncc)
- { parse_UNC_path(path.getStr(), puncc); }
-
bool has_path_parent(const sal_Unicode* path)
{
// Has the given path a parent or are we already there,