mirror of
https://github.com/Z3Prover/z3
synced 2025-04-03 16:19:57 +00:00
tiny fix to qprofdiff (#6497)
This commit is contained in:
parent
293627c889
commit
8002a51b82
|
@ -65,7 +65,7 @@ int parse(string const & filename, map<string, map_entry> & data) {
|
|||
inx != string::npos;
|
||||
inx = line.find(" : ", from)) {
|
||||
tokens[ti] = trim(line.substr(from, inx-from));
|
||||
from = inx+1;
|
||||
from = inx+3; //3 is the length of " : "
|
||||
ti++;
|
||||
}
|
||||
if (from != line.length() && ti < 4)
|
||||
|
|
Loading…
Reference in a new issue