Merge pull request #871 from keyboardio/virtual/atmega-fix

driver/mcu/ATmega32U4: Fix the class declaration for virtual builds
pull/872/head
Jesse Vincent 4 years ago committed by GitHub
commit 973eb7e089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -75,7 +75,8 @@ class ATmega32U4 : public kaleidoscope::driver::mcu::Base<_Props> {
} }
}; };
#else #else
typedef Base ATmega32U4; template <typename _Props>
class ATmega32U4 : public kaleidoscope::driver::mcu::Base<_Props> {};
#endif // ifndef KALEIDOSCOPE_VIRTUAL_BUILD #endif // ifndef KALEIDOSCOPE_VIRTUAL_BUILD
} }

Loading…
Cancel
Save