diff options
author | collin <collin@livio.io> | 2021-03-03 15:58:26 -0500 |
---|---|---|
committer | collin <collin@livio.io> | 2021-03-03 15:58:26 -0500 |
commit | 9442c2e7607b754499f3c60ac8de8e0ed01c15f4 (patch) | |
tree | e143aef65439ef6d2ea638c934007e8edabcc1c7 | |
parent | 69d57f2ed9d8f41c1d50ecb2aa44de1df5292277 (diff) | |
download | sdl_core-fix/release_build.tar.gz |
remove unused semantic version constructorfix/release_build
-rw-r--r-- | src/components/include/utils/semantic_version.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/components/include/utils/semantic_version.h b/src/components/include/utils/semantic_version.h index 01b04495ad..54be460bab 100644 --- a/src/components/include/utils/semantic_version.h +++ b/src/components/include/utils/semantic_version.h @@ -43,12 +43,6 @@ struct SemanticVersion { patch_version_ = patch; } - SemanticVersion(const SemanticVersion& other) { - major_version_ = other.major_version_; - minor_version_ = other.minor_version_; - patch_version_ = other.patch_version_; - } - SemanticVersion(const std::string& versionString) : major_version_(0), minor_version_(0), patch_version_(0) { int readElements = sscanf(versionString.c_str(), |