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