]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix copy operator for different argument types. This wasn't
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 6 May 2003 23:16:11 +0000 (23:16 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 6 May 2003 23:16:11 +0000 (23:16 +0000)
instantiable before.

git-svn-id: https://svn.dealii.org/trunk@7596 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/base/include/base/table.h
deal.II/lac/include/lac/full_matrix.templates.h

index 144c404d6956cf4a099c33c6d64c0bdbf1d13ab8..38d6c8a4c873217f3b6ade893b7e91009e142fc0 100644 (file)
@@ -929,6 +929,12 @@ class TableBase : public Subscriptor
                                       * table.
                                       */
     TableIndices<N> table_size;
+
+                                    /**
+                                     * Make all other table classes
+                                     * friends.
+                                     */
+    template <int, typename> friend class TableBase;
 };
 
 
index 67c6f86cef44cb69b522521e7e5e0d9a5f3b7c9f..95a6e8c3a4ae046f0c9d2b8f62cf14950535bd7f 100644 (file)
@@ -70,7 +70,7 @@ template <typename number2>
 FullMatrix<number>&
 FullMatrix<number>::operator = (const FullMatrix<number2>& M)
 {
-  Table<2,number>::operator=(M);
+  TableBase<2,number>::operator=(M);
   return *this;
 }
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.