diff options
author | Marius Kintel <marius@kintel.net> | 2011-08-27 20:09:48 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-08-27 20:09:48 (GMT) |
commit | b68537b6ac032cb138e4c6225c6be8680f9664f7 (patch) | |
tree | 0dc5fdb7c61db01704a69ef3e4c0519f0be86089 /src/CGALEvaluator.h | |
parent | b3dd77d2521fae2305251a57217b1b22fe7180e0 (diff) | |
parent | ec85e65ee983258db44770f246537562a16d141b (diff) |
Merge pull request #20 from donbright/visitorwinxp
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() {} |