Closed aldanor closed 10 years ago
Thanks! At some point I'll probably switch to C++11 which has
You're welcome :) Looks like everything mostly works fine on OSX 10.9 now. I've discovered some sysex-related issues by the way, will post later if you're interested.
Closed via #2.
Please do! It's good to know mididings is usable on OSX :)
Because
unordered_map
is no longer intr1
namespace inlibc++
(see e.g. https://groups.google.com/forum/#!topic/ceres-solver/RWAvy0TbI4A or http://stackoverflow.com/questions/7870897/why-some-include-files-only-reside-in-tr1)One way to handle this on all platforms, I guess, is to use
unordered_map
fromboost
(since boost is used already anyway).