Mercurial > hg > octave-nkf
comparison src/ov-base-mat.h @ 12153:e0e50f48df37
Explicitly disallow copying in some classes
author | Pascal Dupuis <Pascal.Dupuis@uclouvain.be> |
---|---|
date | Mon, 24 Jan 2011 14:57:07 -0500 |
parents | 12df7854fa7c |
children | d6118a2c0644 |
comparison
equal
deleted
inserted
replaced
12152:8e1ab522c902 | 12153:e0e50f48df37 |
---|---|
185 delete idx_cache; idx_cache = 0; | 185 delete idx_cache; idx_cache = 0; |
186 } | 186 } |
187 | 187 |
188 mutable MatrixType *typ; | 188 mutable MatrixType *typ; |
189 mutable idx_vector *idx_cache; | 189 mutable idx_vector *idx_cache; |
190 | |
191 private: | |
192 | |
193 // No assignment. | |
194 | |
195 octave_base_matrix& operator = (const octave_base_matrix&); | |
190 }; | 196 }; |
191 | 197 |
192 #endif | 198 #endif |