diff --git a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGBasicHandModelImpl.cpp b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGBasicHandModelImpl.cpp index 1a48f6b4..4f2aca43 100644 --- a/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGBasicHandModelImpl.cpp +++ b/Source/SenseGloveCoreImpl/Private/SGCoreImpl/SGBasicHandModelImpl.cpp @@ -78,7 +78,7 @@ struct FSGBasicHandModelImpl::FImpl FImpl& operator=(const FImpl& Rhs) = default; }; -FSGBasicHandModelImpl FSGBasicHandModelImpl::Default(bool bRightHanded) +FSGBasicHandModelImpl FSGBasicHandModelImpl::Default(const bool bRightHanded) { return FSGBasicHandModelImpl(FSGBasicHandModelImpl::FBasicHandModelType::Default(bRightHanded)); } @@ -127,7 +127,7 @@ FSGBasicHandModelImpl::FSGBasicHandModelImpl() { } -FSGBasicHandModelImpl::FSGBasicHandModelImpl(bool bRightHanded, const TArray>& Lengths, +FSGBasicHandModelImpl::FSGBasicHandModelImpl(const bool bRightHanded, const TArray>& Lengths, const TArray& StartPositions) : #if ENGINE_MAJOR_VERSION == 5 || ( ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION > 24 ) @@ -148,7 +148,7 @@ FSGBasicHandModelImpl::FSGBasicHandModelImpl(bool bRightHanded, const TArray>& Lengths, +FSGBasicHandModelImpl::FSGBasicHandModelImpl(const bool bRightHanded, const TArray>& Lengths, const TArray& StartPositions, const TArray& StartRotations) : #if ENGINE_MAJOR_VERSION == 5 || ( ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION > 24 )