From 91dbcbc7eff21535ecc4657467fd654c7624d741 Mon Sep 17 00:00:00 2001 From: "FeRD (Frank Dana)" Date: Mon, 5 Aug 2019 02:11:22 -0400 Subject: [PATCH] OpenShotVersion.h.in: std:: prefixes --- include/OpenShotVersion.h.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/OpenShotVersion.h.in b/include/OpenShotVersion.h.in index 89f4ed52..e6b907ff 100644 --- a/include/OpenShotVersion.h.in +++ b/include/OpenShotVersion.h.in @@ -43,7 +43,6 @@ #define OPENSHOT_VERSION_SO @PROJECT_SO_VERSION@ /// Shared object version number. This increments any time the API and ABI changes (so old apps will no longer link) #include -using namespace std; namespace openshot { @@ -55,8 +54,8 @@ namespace openshot int so; /// Shared Object Number (incremented when API or ABI changes) /// Get a string version of the version (i.e. "Major.Minor.Build") - string ToString() { - stringstream version_string; + std::string ToString() { + std::stringstream version_string; version_string << major << "." << minor << "." << build; return version_string.str(); }