Skip to content

Commit

Permalink
+ fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Dec 30, 2015
1 parent 0135094 commit 715ae4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Points/App/ViewFeature.cpp
Expand Up @@ -80,7 +80,7 @@ ViewFeature::~ViewFeature()

App::DocumentObjectExecReturn *ViewFeature::execute(void)
{
int size = Height.getValue() * Width.getValue();
std::size_t size = Height.getValue() * Width.getValue();
if (size != Points.getValue().size())
throw Base::ValueError("(Width * Height) doesn't match with number of points");
this->Points.touch();
Expand Down

0 comments on commit 715ae4e

Please sign in to comment.