widestomp: apply clang-tidy-11 fixes

pull/587/head
nick black 4 years ago
parent 173af7b3c6
commit 3f93d15cda
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -11,7 +11,7 @@ constexpr auto DELAY = 1;
// dump two wide glyphs, then create a new plane and drop it atop them
int stomper(NotCurses& nc, std::shared_ptr<Plane> nn){
auto stomper(NotCurses& nc, std::shared_ptr<Plane>& nn) -> int {
nn->move(0, 1);
nc.render();
@ -42,7 +42,7 @@ int stomper(NotCurses& nc, std::shared_ptr<Plane> nn){
return 0;
}
int main(void){
auto main() -> int {
setlocale(LC_ALL, "");
NotCurses nc;
std::shared_ptr<Plane> n(nc.get_stdplane());

Loading…
Cancel
Save