Changeset 19290 for trunk/Mars


Ignore:
Timestamp:
10/24/18 19:53:21 (6 years ago)
Author:
tbretz
Message:
As a static member it is missing in the dictionary, as an inline member it is available.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mcore/huffman.h

    r18979 r19290  
    1515namespace Huffman
    1616{
    17     static unsigned long numbytes_from_numbits(unsigned long numbits)
     17    inline unsigned long numbytes_from_numbits(unsigned long numbits)
    1818    {
    1919        return numbits / 8 + (numbits % 8 ? 1 : 0);
Note: See TracChangeset for help on using the changeset viewer.