From 3ab280ce4e1f6976dc1b09a4291b450157a361de Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sun, 17 Jan 2010 12:40:19 -0500 Subject: [PATCH] add missing semicolon in the example --- doc/CustomizingEigen.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/CustomizingEigen.dox b/doc/CustomizingEigen.dox index 2f56e1f36..e4862b943 100644 --- a/doc/CustomizingEigen.dox +++ b/doc/CustomizingEigen.dox @@ -58,7 +58,7 @@ template void makeCeil(const MatrixBase& other) { derived() = derived().cwise().max(other.derived()); } const typename Cwise::ScalarAddReturnType -operator+(const Scalar& scalar) const { return cwise() + scalar } +operator+(const Scalar& scalar) const { return cwise() + scalar; } friend const typename Cwise::ScalarAddReturnType operator+(const Scalar& scalar, const MatrixBase& mat) { return mat + scalar; }