Skip to content

Commit

Permalink
+ apply f3nix:fix-gcc-warnings-1
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed May 8, 2016
1 parent fbf7255 commit 1ccab84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Part/App/Attacher.cpp
Expand Up @@ -325,7 +325,7 @@ void AttachEngine::suggestMapModes(SuggestResult &result) const
//build string of references to be added to fit this mode
refTypeString extraRefs;
extraRefs.resize(str.size() - typeStr.size());
for (int iChr = typeStr.size() ; iChr < str.size() ; iChr++){
for (std::size_t iChr = typeStr.size(); iChr < str.size(); iChr++) {
extraRefs[iChr - typeStr.size()] = str[iChr];
}

Expand Down

0 comments on commit 1ccab84

Please sign in to comment.