diff options
author | Marius Kintel <marius@kintel.net> | 2011-10-26 15:00:18 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-10-26 15:00:18 (GMT) |
commit | ed54572c9b6d31abc7dddd14d0acc7a153db11a4 (patch) | |
tree | f0c3b9721d1130e97935dde4f8a89a6af40f9254 /src/CGALEvaluator.h | |
parent | 0f7ea1ddc0d695726c9f66591cfedf50c5310561 (diff) |
Make some code more readable and better error reporting on a reporter assert error
Diffstat (limited to 'src/CGALEvaluator.h')
-rw-r--r-- | src/CGALEvaluator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CGALEvaluator.h b/src/CGALEvaluator.h index 0ac716c..6a26043 100644 --- a/src/CGALEvaluator.h +++ b/src/CGALEvaluator.h @@ -37,7 +37,8 @@ private: CGAL_Nef_polyhedron applyHull(const CgaladvNode &node); std::string currindent; - typedef std::list<std::pair<const AbstractNode *, std::string> > ChildList; + typedef std::pair<const AbstractNode *, std::string> ChildItem; + typedef std::list<ChildItem> ChildList; std::map<int, ChildList> visitedchildren; const Tree &tree; |