You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
OpenShotVersion.h.in: std:: prefixes
This commit is contained 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 <sstream>
|
||||
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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user