Skip to content

Commit

Permalink
fix BaseLayerOp
Browse files Browse the repository at this point in the history
  • Loading branch information
profezzorn committed Oct 27, 2024
1 parent 10b2a5f commit 48cc7d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions display/ssd1306.h
Original file line number Diff line number Diff line change
Expand Up @@ -1015,9 +1015,9 @@ class BlasterDisplayController : public StandardDisplayController<Width, col_t,
}
};

template<template<int, class> class T>
template<template<int, class, class> class T, typename PREFIX = ByteArray<>>
struct BaseLayerOp {
template<int Width, class col_t> struct Controller : public T<Width, col_t> {};
template<int Width, class col_t> struct Controller : public T<Width, col_t, PREFIX> {};
};

template<int WIDTH, class col_t, class POWER_PIN = PowerPINS<> >
Expand Down

0 comments on commit 48cc7d6

Please sign in to comment.