diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-03-16 15:31:10 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-03-20 12:57:31 +0000 |
commit | 0a14f36501e2e0ce8373464dc1655fdb1e9550b6 (patch) | |
tree | e175547213c8528499845a78064fd44a714f0ee9 /svl/source/filerec/filerec.cxx | |
parent | 00f32691bfcbfbecc824e65e60a506b0035f9643 (diff) |
split macros to elide unneeded methods
Diffstat (limited to 'svl/source/filerec/filerec.cxx')
-rw-r--r-- | svl/source/filerec/filerec.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/filerec/filerec.cxx b/svl/source/filerec/filerec.cxx index df5468e54149..2c810eddab98 100644 --- a/svl/source/filerec/filerec.cxx +++ b/svl/source/filerec/filerec.cxx @@ -483,7 +483,7 @@ void SfxMultiVarRecordWriter::FlushContent_Impl() { // Versions-Kennung und Positions-Offset des aktuellen Contents merken; // das Positions-Offset ist relativ zur Startposition des ersten Contents - assert(_aContentOfs.size() == _nContentCount-1); + assert(_aContentOfs.size() == static_cast<size_t>(_nContentCount)-1); _aContentOfs.resize(_nContentCount-1); _aContentOfs.push_back( SFX_REC_CONTENT_HEADER(_nContentVer,_nStartPos,_nContentStartPos)); |