diff options
author | don bright <hugh.m.bright@gmail.com> | 2011-08-12 23:48:59 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2011-08-12 23:48:59 (GMT) |
commit | ec85e65ee983258db44770f246537562a16d141b (patch) | |
tree | 9d7f4e278a0402fa7271a6089ef375703e4ef5d4 /src/CGALEvaluator.h | |
parent | be63c6eeacf7ed4604106dc0859602ba98847a4f (diff) |
fix build errors on windows
Diffstat (limited to 'src/CGALEvaluator.h')
-rw-r--r-- | src/CGALEvaluator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CGALEvaluator.h b/src/CGALEvaluator.h index 282d6ab..9a1c88c 100644 --- a/src/CGALEvaluator.h +++ b/src/CGALEvaluator.h @@ -22,7 +22,7 @@ using std::pair; class CGALEvaluator : public Visitor { public: - enum CsgOp {UNION, INTERSECTION, DIFFERENCE, MINKOWSKI, HULL}; + enum CsgOp {CGE_UNION, CGE_INTERSECTION, CGE_DIFFERENCE, CGE_MINKOWSKI, CGE_HULL}; // FIXME: If a cache is not given, we need to fix this ourselves CGALEvaluator(QHash<string, CGAL_Nef_polyhedron> &cache, const Tree &tree) : cache(cache), tree(tree), psevaluator(*this) {} virtual ~CGALEvaluator() {} |