From 88a1d8607997721f06d7e38fda3d14c584e97f70 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 30 Aug 2021 20:36:15 +0200 Subject: [PATCH] kaleidoscope::device::Base: Don't make the default noop_serial_ static With `noop_serial_` being static, if we don't override the `serial()` method, we fail to link. Signed-off-by: Gergely Nagy --- src/kaleidoscope/device/Base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kaleidoscope/device/Base.h b/src/kaleidoscope/device/Base.h index 169b96f3..cdc4f037 100644 --- a/src/kaleidoscope/device/Base.h +++ b/src/kaleidoscope/device/Base.h @@ -90,7 +90,7 @@ class Base { } }; - static NoOpSerial noop_serial_; + NoOpSerial noop_serial_; public: Base() {}