From 04de3a37d940ddfa98fe8083311e790845189b91 Mon Sep 17 00:00:00 2001 From: barfowl Date: Thu, 21 May 2015 20:14:46 -0700 Subject: [PATCH] Missed a few corrections in the previous commit. --- tutorials/far/tutorial_3/far_tutorial_3.cpp | 2 +- tutorials/far/tutorial_7/far_tutorial_7.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/far/tutorial_3/far_tutorial_3.cpp b/tutorials/far/tutorial_3/far_tutorial_3.cpp index 76885d78..017957a1 100644 --- a/tutorials/far/tutorial_3/far_tutorial_3.cpp +++ b/tutorials/far/tutorial_3/far_tutorial_3.cpp @@ -229,7 +229,7 @@ int main(int, char **) { { // Output OBJ of the highest level refined ----------- - Far::TopologyLevel const & refLastLevel = refiner->GetLevel(maxlevel). + Far::TopologyLevel const & refLastLevel = refiner->GetLevel(maxlevel); // Print vertex positions for (int level=0, firstVert=0; level<=maxlevel; ++level) { diff --git a/tutorials/far/tutorial_7/far_tutorial_7.cpp b/tutorials/far/tutorial_7/far_tutorial_7.cpp index b22d2ea5..8d58cb30 100644 --- a/tutorials/far/tutorial_7/far_tutorial_7.cpp +++ b/tutorials/far/tutorial_7/far_tutorial_7.cpp @@ -180,7 +180,7 @@ int main(int, char **) { // Print vertex positions for (int level=1, firstvert=0; level<=maxlevel; ++level) { - Far::TopologyLevel conat & refLevel = refiner->GetLevel(level); + Far::TopologyLevel const & refLevel = refiner->GetLevel(level); printf("g level_%d\n", level);