Skip to content
Snippets Groups Projects
Commit 698fdaeb authored by juergen's avatar juergen
Browse files

fixes for windows in mae format and overlay export

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2095 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent 6e3a16ea
No related branches found
No related tags found
No related merge requests found
File changed. Contains only whitespace changes. Show whitespace changes.
...@@ -62,7 +62,7 @@ using boost::format; ...@@ -62,7 +62,7 @@ using boost::format;
nrvo.push_back(line.substr(p0,p1-p0)); nrvo.push_back(line.substr(p0,p1-p0));
++p1; ++p1;
p0=p1; p0=p1;
while(isspace(line[p1]) and p1<line.size()) {++p0;++p1;} while(isspace(line[p1]) && p1<line.size()) {++p0;++p1;}
--p0; --p1; --p0; --p1;
} }
} else { } else {
...@@ -70,7 +70,7 @@ using boost::format; ...@@ -70,7 +70,7 @@ using boost::format;
nrvo.push_back(line.substr(p0+1,p1-p0-1)); nrvo.push_back(line.substr(p0+1,p1-p0-1));
++p1; ++p1;
p0=p1; p0=p1;
while(isspace(line[p1]) and p1<line.size()) {++p0;++p1;} while(isspace(line[p1]) && p1<line.size()) {++p0;++p1;}
--p0; --p1; --p0; --p1;
} else if(line[p1]=='"') { } else if(line[p1]=='"') {
in_string=true; in_string=true;
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment