summaryrefslogtreecommitdiff
path: root/sc/inc/scmatrix.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/scmatrix.hxx')
-rw-r--r--sc/inc/scmatrix.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/inc/scmatrix.hxx b/sc/inc/scmatrix.hxx
index 8317b85a1184..5e9800ea275d 100644
--- a/sc/inc/scmatrix.hxx
+++ b/sc/inc/scmatrix.hxx
@@ -167,7 +167,7 @@ public:
};
typedef boost::interprocess::unique_ptr<Pos, PosDeleter> PosRef;
- typedef boost::interprocess::unique_ptr<ConstPos, PosDeleter> ConstPosRef;
+ typedef boost::interprocess::unique_ptr<ConstPos, ConstPosDeleter> ConstPosRef;
/// The maximum number of elements a matrix may have at runtime.
inline static size_t GetElementsMax()
@@ -407,6 +407,8 @@ public:
void GetDoubleArray( std::vector<double>& rArray ) const;
void MergeDoubleArray( std::vector<double>& rArray, Op eOp ) const;
+ ScMatrix& operator+= ( const ScMatrix& r );
+
#if DEBUG_MATRIX
void Dump() const;
#endif