Skip to content

Commit bf4bd5b

Browse files
SearchPath : Replace is_complete() with is_absolute()
Co-authored-by: MartinFx <[email protected]>
1 parent 239421a commit bf4bd5b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
10.5.x.x (relative to 10.5.14.0)
22
========
33

4+
Fixes
5+
-----
46

7+
- Boost : Fixed compatibility with Boost 1.82.
58

69
10.5.14.0 (relative to 10.5.13.1)
710
=========

src/IECore/SearchPath.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ std::string SearchPath::getPaths( const std::string &separator ) const
106106
boost::filesystem::path SearchPath::find( const boost::filesystem::path &file ) const
107107
{
108108
// if it's a full path then there's no need to do any searching
109-
if( file.is_complete() )
109+
if( file.is_absolute() )
110110
{
111111
if( exists( file ) )
112112
{

0 commit comments

Comments
 (0)