From ffcafd6f63b952e034b5830e7563972aac546c9f Mon Sep 17 00:00:00 2001 From: abscisys Date: Thu, 5 Jan 2023 04:24:00 +0100 Subject: [PATCH] A bit of cleanup --- src/fx.h | 3 --- src/userinterface.h | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/fx.h b/src/fx.h index 93e86d0..c8d9203 100644 --- a/src/fx.h +++ b/src/fx.h @@ -22,9 +22,6 @@ #include #include "common.h" -#include -using namespace std; - #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ TypeName(const TypeName&) = delete; \ void operator=(const TypeName&) = delete diff --git a/src/userinterface.h b/src/userinterface.h index 938b5a2..5de2846 100644 --- a/src/userinterface.h +++ b/src/userinterface.h @@ -55,8 +55,8 @@ public: // To be called from the MIDI device on reception of a MIDI CC message void UIMIDICmdHandler (unsigned nMidiCh, unsigned nMidiCmd, unsigned nMidiData1, unsigned nMidiData2); - void LCDWrite (const char *pString); // Print to optional HD44780 display private: + void LCDWrite (const char *pString); // Print to optional HD44780 display void EncoderEventHandler (CKY040::TEvent Event); static void EncoderEventStub (CKY040::TEvent Event, void *pParam);