diff pointpair.cpp @ 589:9119f2fa3efe

Header file rearrangement Make it so that lshlib.h is slightly more like a header file to include to use the LSH ("class G") class, and slightly less a header file for developing that class, by removing all the #includes and moving them to the one-file lshlib.cpp instead. Make audioDB-internals.h slightly more of a project header file, by including there all the headers we actually need. Remove some assert()s (which do nothing) and some Uns32Ts (-> uint32_t)
author mas01cr
date Tue, 11 Aug 2009 21:42:13 +0000
parents cc2b97d020b1
children
line wrap: on
line diff
--- a/pointpair.cpp	Tue Aug 11 21:42:07 2009 +0000
+++ b/pointpair.cpp	Tue Aug 11 21:42:13 2009 +0000
@@ -3,7 +3,7 @@
 }
 #include "audioDB-internals.h"
 
-PointPair::PointPair(Uns32T a, Uns32T b, Uns32T c) :
+PointPair::PointPair(uint32_t a, uint32_t b, uint32_t c) :
   trackID(a), qpos(b), spos(c) {
 };