From 7777dce64be826d070b17312d7e82b6ce8eb21de Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 30 May 2013 19:57:03 -0400 Subject: Add posix_string() function to fs::basic_path class template --- cutl/fs/path.ixx | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'cutl/fs/path.ixx') diff --git a/cutl/fs/path.ixx b/cutl/fs/path.ixx index 38a486d..80d3bb3 100644 --- a/cutl/fs/path.ixx +++ b/cutl/fs/path.ixx @@ -43,6 +43,15 @@ namespace cutl return *this; } +#ifndef _WIN32 + template + inline typename basic_path::string_type basic_path:: + posix_string () const + { + return string (); + } +#endif + #ifdef _WIN32 template <> inline char basic_path:: -- cgit v1.1