~hmatuschek/+junk/qdmr-package

« back to all changes in this revision

Viewing changes to lib/crc32.hh

  • Committer: Hannes Matuschek
  • Date: 2020-07-07 14:34:22 UTC
  • mto: (17.1.1 qdmr-package)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: hmatuschek@gmail.com-20200707143422-1djcxrjkem3k5kb1
Tags: upstream-0.3.0
ImportĀ upstreamĀ versionĀ 0.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
  /** Update CRC with given data. */
18
18
        void update(const QByteArray &data);
19
19
  /** Returns the current CRC. */
20
 
        inline uint32_t get() { return _crc; }
 
20
  inline uint32_t get() { return _crc; }
21
21
 
22
22
protected:
23
23
  /** Current CRC. */