From 87f5d605c4f3095e1aceefc4637742953c5a257c Mon Sep 17 00:00:00 2001 From: Frank Galligan Date: Wed, 25 Oct 2017 09:05:27 -0700 Subject: [PATCH] Spec: Change C++ variable initialization - Addresses a comment in KhronosGroup/glTF#1114 --- docs/spec/attributes.decoder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/spec/attributes.decoder.md b/docs/spec/attributes.decoder.md index 3fe74d8..fc4dc17 100644 --- a/docs/spec/attributes.decoder.md +++ b/docs/spec/attributes.decoder.md @@ -90,7 +90,7 @@ void RecomputeVerticesInternal() { c = vertex_corners_[v]; if (c < 0) continue; - first_vert_id(num_new_vertices++); + first_vert_id = num_new_vertices++; first_c = c; if (IsVertexOnAttributeSeam(attr, v)) { act_c = SwingLeft(curr_att_dec, first_c);