Fix some warnings
This commit is contained in:
@@ -9,7 +9,7 @@ namespace Nz
|
||||
{
|
||||
ApplicationComponent::~ApplicationComponent() = default;
|
||||
|
||||
void ApplicationComponent::Update(Time elapsedTime)
|
||||
void ApplicationComponent::Update(Time /*elapsedTime*/)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -418,7 +418,7 @@ namespace Nz
|
||||
m_vertices[index].totalValence++;
|
||||
m_vertices[index].remainingValence++;
|
||||
|
||||
m_vertices[index].triIndices.push_back(i / 3);
|
||||
m_vertices[index].triIndices.push_back(SafeCast<int>(i / 3));
|
||||
}
|
||||
|
||||
m_bestTri = FullScoreRecalculation();
|
||||
|
||||
@@ -58,7 +58,7 @@ namespace Nz
|
||||
return m_attachedSkeleton;
|
||||
}
|
||||
|
||||
void SharedSkeletonComponent::OnReferenceJointsInvalidated(const Skeleton* skeleton)
|
||||
void SharedSkeletonComponent::OnReferenceJointsInvalidated(const Skeleton* /*skeleton*/)
|
||||
{
|
||||
m_skeletonJointInvalidated = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user