From d557915007e358b1df55e21f6ee71bfd26b87fe4 Mon Sep 17 00:00:00 2001 From: Tom Deakin Date: Fri, 29 Apr 2016 18:36:47 +0100 Subject: [PATCH] Remove static keyword --- src/Stream.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Stream.h b/src/Stream.h index c31d62d..527fe6a 100644 --- a/src/Stream.h +++ b/src/Stream.h @@ -23,6 +23,6 @@ class Stream // Implementation specific device functions -static void listDevices(void); -static std::string getDeviceName(const int); -static std::string getDeviceDriver(const int); +void listDevices(void); +std::string getDeviceName(const int); +std::string getDeviceDriver(const int);