Skip to content

Commit

Permalink
Fix GCC warnings: type qualifiers ignored on cast result type [-Wigno…
Browse files Browse the repository at this point in the history
…red-qualifiers]
  • Loading branch information
f3nix authored and abdullahtahiriyo committed Dec 28, 2020
1 parent 6075ba3 commit 5dca59d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Part/App/TopoShape.cpp
Expand Up @@ -865,7 +865,7 @@ void TopoShape::importBrep(const char *FileName)
BRepTools::Read(aShape,encodeFilename(FileName).c_str(),aBuilder,pi);
pi->EndScope();
#else
BRepTools::Read(aShape,(const Standard_CString)FileName,aBuilder);
BRepTools::Read(aShape,(Standard_CString)FileName,aBuilder);
#endif
this->_Shape = aShape;
}
Expand Down

0 comments on commit 5dca59d

Please sign in to comment.