Skip to content

Commit

Permalink
fix some linux compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
shaise authored and yorikvanhavre committed Oct 31, 2017
1 parent e1d624b commit c05219c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/Mod/Path/PathSimulator/App/VolSim.cpp
Expand Up @@ -740,6 +740,9 @@ void cSimTool::InitTool() // pos is 0..1 location along the radius of the tool
case ROUND:
dradius = radius * radius;
break;

case FLAT:
break;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Path/PathSimulator/App/VolSim.h
Expand Up @@ -99,8 +99,8 @@ class cSimTool
void InitTool();

Type type;
float tipAngle;
float radius;
float tipAngle;
float dradius;
float chamRatio;
float GetToolProfileAt(float pos);
Expand Down

0 comments on commit c05219c

Please sign in to comment.