# HG changeset patch # User mas01cr # Date 1262709843 0 # Node ID e7fae71ee67600d9d20f1215886ed9705224a3ba # Parent 4c4389325ae445042b84fd52c3e57514167f0275 Remove unused query_from_key_index field in audioDB object Admittedly, I could have used it in the next commit (a modification of sampling), but the plan is to produce a C API for sampling, whereupon all need for this field will disappear, so preemptively zap it. diff -r 4c4389325ae4 -r e7fae71ee676 audioDB.h --- a/audioDB.h Tue Jan 05 14:45:00 2010 +0000 +++ b/audioDB.h Tue Jan 05 16:44:03 2010 +0000 @@ -249,7 +249,6 @@ double timesTol; double radius; bool query_from_key; - Uns32T query_from_key_index; bool use_absolute_threshold; double absolute_threshold; bool use_relative_threshold; @@ -384,7 +383,6 @@ timesTol(0.1), \ radius(0), \ query_from_key(false), \ - query_from_key_index((uint32_t) -1), \ use_absolute_threshold(false), \ absolute_threshold(0.0), \ use_relative_threshold(false), \