mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-12 02:40:00 +01:00
Avoid Clang compilation warnings
This commit is contained in:
@@ -121,7 +121,7 @@ void MediaRectangle::update( float dt )
|
||||
|
||||
LineStrip::LineStrip(std::vector<glm::vec3> points, glm::vec3 color)
|
||||
{
|
||||
for(int i = 0; i < points.size(); ++i)
|
||||
for(size_t i = 0; i < points.size(); ++i)
|
||||
{
|
||||
points_.push_back( points[i] );
|
||||
colors_.push_back( color );
|
||||
|
||||
Reference in New Issue
Block a user