made container constructors explicit

This commit is contained in:
mattijs
2009-11-03 18:09:52 +00:00
parent 1d6268f24a
commit 151f30e779
15 changed files with 61 additions and 36 deletions

View File

@ -163,10 +163,13 @@ int main(int argc, char *argv[])
// Addressing on faces only in mesh vertices.
primitiveFacePatch fPatch
(
UIndirectList<face>
faceList
(
mesh.faces(),
faces
UIndirectList<face>
(
mesh.faces(),
faces
)
),
mesh.points()
);