aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-06-22 16:35:20 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-06-22 16:35:20 +0200
commitcc6dd55028db3cc5fefe2787b9ebebd58eff0f43 (patch)
tree1848a441c721850d51de576e93d39e57417dba05 /Eigen/src/Core/Product.h
parent62c504e7bf62460b4c33f479abea789d18a9ad89 (diff)
put the resurected files into the Eigen namespace
Diffstat (limited to 'Eigen/src/Core/Product.h')
-rw-r--r--Eigen/src/Core/Product.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Eigen/src/Core/Product.h b/Eigen/src/Core/Product.h
index 9bea26886..f7824aa80 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -25,6 +25,8 @@
#ifndef EIGEN_PRODUCT_H
#define EIGEN_PRODUCT_H
+namespace Eigen {
+
template<typename Lhs, typename Rhs> class Product;
template<typename Lhs, typename Rhs, typename StorageKind> class ProductImpl;
@@ -124,4 +126,6 @@ prod(const Lhs& lhs, const Rhs& rhs)
return Product<Lhs,Rhs>(lhs,rhs);
}
+} // end namespace Eigen
+
#endif // EIGEN_PRODUCT_H