Update tools/property_tree support so it builds again.

This commit is contained in:
Dick Hollenbeck 2017-02-02 11:24:52 -06:00 committed by Wayne Stambaugh
parent 7dddb1d1c1
commit 340da50315
2 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ add_executable( property_tree
EXCLUDE_FROM_ALL
property_tree.cpp
../common/richio.cpp
../common/exceptions.cpp
../common/dsnlexer.cpp
../common/ptree.cpp
)

View File

@ -85,7 +85,7 @@ int main( int argc, char** argv )
}
catch( const IO_ERROR& ioe )
{
fprintf( stderr, "%s\n", TO_UTF8( ioe.errorText ) );
fprintf( stderr, "%s\n", TO_UTF8( ioe.What() ) );
}
}