Files @ d163d536640e
Branch filter:

Location: tempo-plotter/utils.h

Hasan Yavuz ÖZDERYA
disabled keyboardTracking for numberOfSamples, this option causes plot data to be lost when you are increasing the number of samples
1
2
3
4
5
6
7
8

// credits: peppe@stackoverflow [http://stackoverflow.com/a/16795664/432492]
template<typename... Args> struct SELECT {
    template<typename C, typename R>
    static constexpr auto OVERLOAD_OF( R (C::*pmf)(Args...) ) -> decltype(pmf) {
        return pmf;
    }
};