Skip to content
Snippets Groups Projects
Commit be785c50 authored by Matthew Webster's avatar Matthew Webster
Browse files

changed unsigned int to signed, was test ever failed?

parent 19b62cd1
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ using namespace NEWIMAGE; ...@@ -14,7 +14,7 @@ using namespace NEWIMAGE;
using namespace NEWMAT; using namespace NEWMAT;
string matf2coordf(string matf){ string matf2coordf(string matf){
unsigned int pos=matf.rfind("/"); int pos=matf.rfind("/");
if(pos!=string::npos) if(pos!=string::npos)
matf.replace(pos,1,"/coords_for_"); matf.replace(pos,1,"/coords_for_");
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment