We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
is_complete()
is_absolute()
1 parent 239421a commit bf4bd5bCopy full SHA for bf4bd5b
Changes
@@ -1,7 +1,10 @@
1
10.5.x.x (relative to 10.5.14.0)
2
========
3
4
+Fixes
5
+-----
6
7
+- Boost : Fixed compatibility with Boost 1.82.
8
9
10.5.14.0 (relative to 10.5.13.1)
10
=========
src/IECore/SearchPath.cpp
@@ -106,7 +106,7 @@ std::string SearchPath::getPaths( const std::string &separator ) const
106
boost::filesystem::path SearchPath::find( const boost::filesystem::path &file ) const
107
{
108
// if it's a full path then there's no need to do any searching
109
- if( file.is_complete() )
+ if( file.is_absolute() )
110
111
if( exists( file ) )
112
0 commit comments