<h3>General</h3>
<ol>
+<li> Fixed: The Intel compiler complains that it can't copy Trilinos vector
+reference objects, preventing the compiling of step-32. This is now fixed.
+<br>
+(Wolfgang Bangerth, 2011/11/09)
+
<li> Fixed: Intel ICC 12.1 gets into trouble with BOOST because BOOST
believes that the compiler supports C++0x but one then still has to
specify the corresponding flag on the command line to avoid compiler
const VectorReference &
operator = (const VectorReference &r) const;
+ /**
+ * Same as above but for non-const
+ * reference objects.
+ */
+ const VectorReference &
+ operator = (const VectorReference &r);
+
/**
* Set the referenced element of the
* vector to <tt>s</tt>.
+ inline
+ const VectorReference &
+ VectorReference::operator = (const VectorReference &r)
+ {
+ // as above
+ *this = static_cast<TrilinosScalar> (r);
+
+ return *this;
+ }
+
+
inline
const VectorReference &
VectorReference::operator = (const TrilinosScalar &value) const
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams