mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-08 18:19:42 +00:00
use sizeof instead of hardcoded value.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21671 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c61ff2e0b8
commit
6feb6a8947
@ -103,8 +103,7 @@ size_t ParagraphMetrics::computeRowSignature(Row const & row,
|
||||
boost::crc_32_type crc;
|
||||
for (pos_type i = row.pos(); i < row.endpos(); ++i) {
|
||||
char_type const b[] = { par_->getChar(i) };
|
||||
// char_type is 4 bytes!
|
||||
crc.process_bytes(b, 4);
|
||||
crc.process_bytes(b, sizeof(char_type));
|
||||
if (bparams.trackChanges) {
|
||||
Change change = par_->lookupChange(i);
|
||||
char_type const b[] = { change.type };
|
||||
|
Loading…
Reference in New Issue
Block a user