dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #10454
Use of const and shared_ptr
We've been using const and shared_ptr differently in a few places. The
correct usage as far as I understand is
std::tr1::shared_ptr<const Foo> foo
and not
const std::tr1::shared_ptr<Foo> foo
The first (correct) usage corresponds to
const Foo& foo
or
const Foo* foo
that is, one cannot change the object pointed to.
--
Anders
Attachment:
signature.asc
Description: Digital signature
Follow ups