[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lmi-commits] [6575] Define operator<<() for fs::path in the right names
From: |
gchicares |
Subject: |
[lmi-commits] [6575] Define operator<<() for fs::path in the right namespace (VZ) |
Date: |
Wed, 11 May 2016 16:50:12 +0000 (UTC) |
Revision: 6575
http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=6575
Author: chicares
Date: 2016-05-11 16:50:12 +0000 (Wed, 11 May 2016)
Log Message:
-----------
Define operator<<() for fs::path in the right namespace (VZ)
Modified Paths:
--------------
lmi/trunk/path_utility.hpp
Modified: lmi/trunk/path_utility.hpp
===================================================================
--- lmi/trunk/path_utility.hpp 2016-05-11 16:48:42 UTC (rev 6574)
+++ lmi/trunk/path_utility.hpp 2016-05-11 16:50:12 UTC (rev 6575)
@@ -61,10 +61,18 @@
,std::string const& context
);
+namespace boost
+{
+namespace filesystem
+{
+
inline std::ostream& operator<<(std::ostream& os, fs::path const& z)
{
return os << z.string();
}
+} // namespace filesystem
+} // namespace boost
+
#endif // path_utility_hpp
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [lmi-commits] [6575] Define operator<<() for fs::path in the right namespace (VZ),
gchicares <=