From: <br...@us...> - 2012-04-26 06:55:39
|
Revision: 4257 http://openvrml.svn.sourceforge.net/openvrml/?rev=4257&view=rev Author: braden Date: 2012-04-26 06:55:28 +0000 (Thu, 26 Apr 2012) Log Message: ----------- Applying the stream output operator to a boost::filesystem::path now yields a string within quotes; use boost::filesystem::path::generic_string instead. Modified Paths: -------------- trunk/ChangeLog trunk/src/local/libopenvrml-dl/openvrml/local/dl.cpp Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2012-04-24 03:23:13 UTC (rev 4256) +++ trunk/ChangeLog 2012-04-26 06:55:28 UTC (rev 4257) @@ -1,3 +1,12 @@ +2012-04-26 Braden McDaniel <br...@en...> + + * src/local/libopenvrml-dl/openvrml/local/dl.cpp + (openvrml::local::dl::foreachfile(const + std::vector<boost::filesystem::path> &, int (*)(const std::string + &, void *), void *): Applying the stream output operator to a + boost::filesystem::path now yields a string within quotes; use + boost::filesystem::path::generic_string instead. + 2012-04-23 Braden McDaniel <br...@en...> Quell warnings from gcc 4.7. Modified: trunk/src/local/libopenvrml-dl/openvrml/local/dl.cpp =================================================================== --- trunk/src/local/libopenvrml-dl/openvrml/local/dl.cpp 2012-04-24 03:23:13 UTC (rev 4256) +++ trunk/src/local/libopenvrml-dl/openvrml/local/dl.cpp 2012-04-26 06:55:28 UTC (rev 4257) @@ -85,7 +85,7 @@ std::vector<boost::filesystem::path>::const_iterator dir = search_path.begin(); while (dir != search_path.end()) { - path << *dir; + path << dir->generic_string(); if (++dir != search_path.end()) { path << LT_PATHSEP_CHAR; } } ltforeachfile_data ltdata = { func, data }; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |