Changeset 19024 for trunk/FACT++


Ignore:
Timestamp:
06/20/18 19:34:34 (6 years ago)
Author:
tbretz
Message:
This gives an identical result but without the clang wanring about a conversion to int.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/zfits.cc

    r18969 r19024  
    120120
    121121    char m[2];
    122     m[0] = 'z'+128;
    123     m[1] = 'f'+128;
     122    m[0] = 'z'|0x80;
     123    m[1] = 'f'|0x80;
    124124
    125125    const size_t hlen = 0;
Note: See TracChangeset for help on using the changeset viewer.