aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/src/BVH
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-03-01 14:33:11 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-03-01 14:33:11 +0100
commit87142237b570da2c5465c067623048378948b152 (patch)
tree5356e95e482fdcdcad675bb9a3b48cb5bc8a005a /unsupported/Eigen/src/BVH
parent210a56ff48083bf2b0d35e7d751f931da8e441ee (diff)
Fix "missing return statement at end of non-void function"
Diffstat (limited to 'unsupported/Eigen/src/BVH')
-rw-r--r--unsupported/Eigen/src/BVH/BVAlgorithms.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/src/BVH/BVAlgorithms.h b/unsupported/Eigen/src/BVH/BVAlgorithms.h
index e5b51decb..994c8af54 100644
--- a/unsupported/Eigen/src/BVH/BVAlgorithms.h
+++ b/unsupported/Eigen/src/BVH/BVAlgorithms.h
@@ -189,7 +189,7 @@ struct minimizer_helper1
Object2 stored;
Minimizer &minimizer;
private:
- minimizer_helper1& operator=(const minimizer_helper1&) {}
+ minimizer_helper1& operator=(const minimizer_helper1&);
};
template<typename Volume2, typename Object2, typename Object1, typename Minimizer>