This is an automated email from the git hooks/post-receive script.

logari81 pushed a commit to branch master
in repository getfem.

The following commit(s) were added to refs/heads/master by this push:
     new 8fa3c636 Fix compilation warning
8fa3c636 is described below

commit 8fa3c6364c0737f6dc8ebac7ec07e0635dbeb122
Author: Konstantinos Poulios <logar...@gmail.com>
AuthorDate: Wed Dec 20 23:31:52 2023 +0100

    Fix compilation warning
---
 src/gmm/gmm_sub_vector.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/gmm/gmm_sub_vector.h b/src/gmm/gmm_sub_vector.h
index c75c8a7b..7c817975 100644
--- a/src/gmm/gmm_sub_vector.h
+++ b/src/gmm/gmm_sub_vector.h
@@ -319,6 +319,9 @@ namespace gmm {
     skyline_sub_vector_iterator
       (const skyline_sub_vector_iterator<MIT, MIT, SUBI> &it)
       : itb(it.itb), si(it.si) {}
+    skyline_sub_vector_iterator &
+    operator =(const skyline_sub_vector_iterator<MIT, MIT, SUBI> &it)
+      { itb=it.itb; si=it.si; return *this; }
   };
 
   template <typename IT, typename SUBI>

Reply via email to