aboutsummaryrefslogtreecommitdiff
path: root/butl/path
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-08-28 11:05:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-08-28 11:05:00 +0200
commit7508f6f84f44a28151def5da5f6ea434d670df60 (patch)
tree16ee7e6c49d71bfd242b4b930dd5841ebb1686df /butl/path
parent6abd3d57f666ce1cd4c4c792e649fd313bee22ad (diff)
Add path::traits::absolute()
Diffstat (limited to 'butl/path')
-rw-r--r--butl/path10
1 files changed, 10 insertions, 0 deletions
diff --git a/butl/path b/butl/path
index aafc2aa..f679330 100644
--- a/butl/path
+++ b/butl/path
@@ -105,6 +105,16 @@ namespace butl
#endif
}
+ static bool
+ absolute (const string_type& s)
+ {
+#ifdef _WIN32
+ return s.size () > 1 && s[1] == ':';
+#else
+ return s.size () != 0 && is_separator (s[0]);
+#endif
+ }
+
static size_type
find_separator (string_type const& s,
size_type pos = 0,