From cb567e44d0e6fc8ffc178a2be26100b8b77eaff8 Mon Sep 17 00:00:00 2001 From: "FeRD (Frank Dana)" Date: Sun, 4 Aug 2019 22:34:56 -0400 Subject: [PATCH] std:: prefixes for AudioBufferSource/AudioDeviceInfo --- include/AudioBufferSource.h | 2 -- include/AudioDeviceInfo.h | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/include/AudioBufferSource.h b/include/AudioBufferSource.h index 4addb37d..903172f7 100644 --- a/include/AudioBufferSource.h +++ b/include/AudioBufferSource.h @@ -42,8 +42,6 @@ #include #include "JuceHeader.h" -using namespace std; - /// This namespace is the default namespace for all code in the openshot library namespace openshot { diff --git a/include/AudioDeviceInfo.h b/include/AudioDeviceInfo.h index 4099430e..bbdbd81b 100644 --- a/include/AudioDeviceInfo.h +++ b/include/AudioDeviceInfo.h @@ -39,8 +39,8 @@ */ struct AudioDeviceInfo { - string name; - string type; + std::string name; + std::string type; }; -#endif \ No newline at end of file +#endif