".github/git@developer.sourcefind.cn:OpenDAS/torch-sparce.git" did not exist on "dfcb26e89461fffceaac3d00550918a568bc553b"
Commit e9c6a774 authored by Davis King's avatar Davis King
Browse files

Added more () to avoid a compiler error in gcc 4.7.1 on SUSE Linux.

Thanks to Volker Härtel for finding this.
parent 114de952
...@@ -259,7 +259,7 @@ namespace dlib ...@@ -259,7 +259,7 @@ namespace dlib
} }
else else
{ {
if (tree[i].c.begin < words.size()) if ((tree[i].c.begin) < words.size())
{ {
out << words[tree[i].c.begin] << " "; out << words[tree[i].c.begin] << " ";
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment