comparison dsp/keydetection/GetKeyMode.cpp @ 43:b4921bfd2aea

* remove exceptions from Polyfit, return bool instead of int from isModeMinor
author cannam
date Thu, 07 Feb 2008 10:01:38 +0000
parents 163f6e03e9e7
children 38bf09927942
comparison
equal deleted inserted replaced
42:d894e92ff673 43:b4921bfd2aea
288 288
289 return key; 289 return key;
290 } 290 }
291 291
292 292
293 int GetKeyMode::isModeMinor( int key ) 293 bool GetKeyMode::isModeMinor( int key )
294 { 294 {
295 return (key > 12); 295 return (key > 12);
296 } 296 }