summaryrefslogtreecommitdiffstats
path: root/development/boost/patches/changeset_r48374.diff
diff options
context:
space:
mode:
Diffstat (limited to 'development/boost/patches/changeset_r48374.diff')
-rw-r--r--development/boost/patches/changeset_r48374.diff18
1 files changed, 18 insertions, 0 deletions
diff --git a/development/boost/patches/changeset_r48374.diff b/development/boost/patches/changeset_r48374.diff
new file mode 100644
index 0000000000..9d6122118b
--- /dev/null
+++ b/development/boost/patches/changeset_r48374.diff
@@ -0,0 +1,18 @@
+Index: /trunk/boost/filesystem/path.hpp
+===================================================================
+--- /trunk/boost/filesystem/path.hpp (revision 47923)
++++ /trunk/boost/filesystem/path.hpp (revision 48374)
+@@ -230,4 +230,6 @@
+ string_type leaf() const { return filename(); }
+ basic_path branch_path() const { return parent_path(); }
++ bool has_leaf() const { return !m_path.empty(); }
++ bool has_branch_path() const { return !parent_path().empty(); }
+ # endif
+
+@@ -238,5 +240,5 @@
+ bool has_root_directory() const;
+ bool has_relative_path() const { return !relative_path().empty(); }
+- bool has_filename() const { return !m_path.empty(); }
++ bool has_filename() const { return !m_path.empty(); }
+ bool has_parent_path() const { return !parent_path().empty(); }
+