Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
254a4c90
Commit
254a4c90
authored
Apr 28, 2016
by
Jan Möbius
Browse files
Initialize array of vectors on VS2015
parent
78196aaa
Pipeline
#1511
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/OpenMesh/Apps/VDProgMesh/Analyzer/vdpmanalyzer.cc
View file @
254a4c90
...
...
@@ -851,7 +851,12 @@ compute_screen_space_error(VHierarchyNodeHandle node_handle, VHierarchyNodeHandl
Vec3f
residual
;
Vec3f
res
;
Vec3f
lp
;
#if (_MSC_VER >= 1900 )
// Workaround for internal compiler error
Vec3f
tri
[
3
]{
{},{},{}
};
#else
Vec3f
tri
[
3
];
#endif
float
s
,
t
;
VHierarchyNodeHandleContainer
::
iterator
n_it
,
n_end
(
leaf_nodes
.
end
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment