summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2013-08-03 19:25:18 +0000
committerJohan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl>2013-08-03 19:25:18 +0000
commitefc2e9140b02c4042254d7a829dcff904f3631bf (patch)
tree6670f2bd6b113593838558e26cf498c816a9656e
parentpdf import. re-define tiling pattern scaling matrix (Bug 1168908) (diff)
downloadinkscape-efc2e9140b02c4042254d7a829dcff904f3631bf.tar.gz
inkscape-efc2e9140b02c4042254d7a829dcff904f3631bf.zip
add comment. cppcheck false positive
(bzr r12451)
-rw-r--r--src/syseq.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syseq.h b/src/syseq.h
index 029f27a91..4e7ccd943 100644
--- a/src/syseq.h
+++ b/src/syseq.h
@@ -289,7 +289,7 @@ template <int S, int T> SolutionKind gaussjord_solve (double A[S][T], double x[T
* afterwards copy the result back to x
*/
double w[S];
- SysEq::multiply<S,T>(B,x,w);
+ SysEq::multiply<S,T>(B,x,w); // initializes w
for (int j = 0; j < S; ++j) {
x[cols[j]] = w[j];
}