|
Ublas : |
From: Markus Schöpflin (markus.schoepflin_at_[hidden])
Date: 2005-10-20 03:27:08
Hello,
I just stumbled accross an interesting compiler warning when looking
through the boost regression logs for the 1.33.1 RC:
cxx: Warning: /vol2/boost/boost/boost/numeric/ublas/vector_sparse.hpp, line
1760: #504-D
nonstandard form for taking the address of a member function
sorted_ = sorted_filled_ = filled;
---------------------------------------^
When looking at the code in question, I'm pretty sure this should read
sorted_ = sorted_filled_ = filled_;
instead. (Note the trailing underscore.)
Markus