 blindcyclists
|
XCode 4.2 Build 4C177, which is the iOS beta 7 build, spits out a weird C++ template error :
OpenEars/OpenEarsLibrary/../mitlm.0.4/src/KneserNeySmoothing.cpp:37:
../mitlm.0.4/src/vector/Operations.h:101:60: error: call to function ‘min’ that is neither visible in the template definition nor found by argument-dependent lookup [3]
This seems to be a problem with CLANG, I think, the fix is to change the offending line to read :
… return std::min(a, b); … instead of …return min(a, b);…
Hope this helps someone else who is lost.
|
 Aleksey
|
Thank you for that timely tip!
|
 Halle
|
I’ve uploaded version .913 which fixes this issue, thank you for the report and the fix!
|