Cleanup: comments (long lines) in freestyle

This commit is contained in:
2019-04-30 17:50:57 +10:00
parent 5ca8ac51d0
commit 1e8697cd80
145 changed files with 1218 additions and 1135 deletions

View File

@@ -801,8 +801,8 @@ static int save(ostream &out, SVertex *sv)
WRITE_IF_NON_NULL(sv->viewvertex());
// Normals (List)
// Note: the 'size()' method of a set doesn't seem to return the actual size of the given set, so we have to
// hack it...
// Note: the 'size()' method of a set doesn't seem to return the actual size of the given set, so
// we have to hack it...
set<Vec3r>::const_iterator i;
for (i = sv->normals().begin(), tmp = 0; i != sv->normals().end(); i++, tmp++)
;
@@ -955,7 +955,7 @@ int load(istream &in, ViewMap *vm, ProgressBar *pb)
if (!vm)
return 1;
//soc unused - unsigned tmp;
// soc unused - unsigned tmp;
int err = 0;
Internal::g_vm = vm;