Open CvRXX opened 7 years ago
If i try to compile the following code the ADL fails.
#include <Chip/nrf52.hpp> #include <Io/Io.hpp> constexpr auto button1 = Kvasir::Io::makePinLocation(Kvasir::Io::port0, Kvasir::Io::pin13); constexpr auto button2 = Kvasir::Io::makePinLocation(Kvasir::Io::port0, Kvasir::Io::pin14); int main() { if (get<0>(apply(read(button1), (read(button2)))) ) {} }
implementing #95 would fix this.
If i try to compile the following code the ADL fails.