summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCollin <iCollin@users.noreply.github.com>2021-03-04 12:52:27 -0500
committerGitHub <noreply@github.com>2021-03-04 12:52:27 -0500
commita557c826cae3dbd8c194055f304c6cab380f70e1 (patch)
treee143aef65439ef6d2ea638c934007e8edabcc1c7
parent69d57f2ed9d8f41c1d50ecb2aa44de1df5292277 (diff)
downloadsdl_core-a557c826cae3dbd8c194055f304c6cab380f70e1.tar.gz
remove unused semantic version constructor (#3650)
-rw-r--r--src/components/include/utils/semantic_version.h6
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(),