# # patch "ChangeLog" # from [09b961cfe6a1528cdd39b99a41b9803eee21c39d] # to [9b4a3253567c46c51190eb8174a08ff651273f09] # # patch "paths.hh" # from [8e81b86a732f309ba8babcbe5a03eaa10d07e2f6] # to [563467ed97bd1015a2e37fe54be6ca812c674598] # ======================================================================== --- ChangeLog 09b961cfe6a1528cdd39b99a41b9803eee21c39d +++ ChangeLog 9b4a3253567c46c51190eb8174a08ff651273f09 @@ -1,5 +1,9 @@ 2005-08-24 Nathaniel Smith + * paths.hh (any_path::operator =): return *this. + +2005-08-24 Nathaniel Smith + * paths.{cc,hh}: More fixes. 2005-08-24 Nathaniel Smith ======================================================================== --- paths.hh 8e81b86a732f309ba8babcbe5a03eaa10d07e2f6 +++ paths.hh 563467ed97bd1015a2e37fe54be6ca812c674598 @@ -45,7 +45,7 @@ any_path(any_path const & other) : data(other.data) {} any_path & operator=(any_path const & other) - { data = other.data; } + { data = other.data; return *this; } }; std::ostream & operator<<(std::ostream & o, any_path const & a);