Mercurial > hg > audiodb
view pointpair.h @ 766:6a5117d68ac4
More sample fix
Amazingly, it's still the same bit of code that is wrong, and this time
I deserve to suffer shame from Chris Cannam, with whom just last month I
had a discussion about the relative merits of signed- and unsigned integers
by default: the error I made here was Chris' textbook example...
author | mas01cr |
---|---|
date | Thu, 02 Jun 2011 16:31:40 +0000 |
parents | 2b95e396f4d7 |
children | aa715b3e18db |
line wrap: on
line source
// should probably be rewritten class PointPair { public: uint32_t trackID; uint32_t qpos; uint32_t spos; PointPair(uint32_t a, uint32_t b, uint32_t c); }; bool operator<(const PointPair& a, const PointPair& b);