aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs/Path.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-02-28 23:00:16 +0100
committerMax Kellermann <max@duempel.org>2015-02-28 23:00:26 +0100
commite1a434edbc84528fcd85e337ebf713c75124ba2b (patch)
treea58335b7ab68a5a40365c4af5288cbc5324b36e9 /src/fs/Path.hxx
parent6b3b1cbd995ec2313427a6fe0b1607938cc71794 (diff)
downloadmpd-e1a434edbc84528fcd85e337ebf713c75124ba2b.tar.gz
mpd-e1a434edbc84528fcd85e337ebf713c75124ba2b.tar.xz
mpd-e1a434edbc84528fcd85e337ebf713c75124ba2b.zip
fs/Path: make IsAbsolute() const
Diffstat (limited to 'src/fs/Path.hxx')
-rw-r--r--src/fs/Path.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/Path.hxx b/src/fs/Path.hxx
index 586224eaf..bf6d1e3ce 100644
--- a/src/fs/Path.hxx
+++ b/src/fs/Path.hxx
@@ -158,7 +158,7 @@ public:
}
gcc_pure
- bool IsAbsolute() {
+ bool IsAbsolute() const {
return PathTraitsFS::IsAbsolute(c_str());
}
};