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
ed215b8b
Commit
ed215b8b
authored
May 08, 2018
by
Jan Möbius
Browse files
Merge branch 'clang_warning_fix' into 'master'
Fixed clang warning See merge request
!169
parents
dcc6b433
ad6eab8b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Unittests/unittests_common_customtraits.hh
View file @
ed215b8b
...
...
@@ -13,7 +13,7 @@ template <int DIM> class Vec {
// Constructor with DIM components
Vec
(
float
x
)
:
data
({
x
})
{}
Vec
(
float
x
,
float
y
)
:
data
({
x
,
y
})
{}
Vec
(
float
x
,
float
y
,
float
z
)
:
data
({
x
,
y
,
z
})
{}
Vec
(
float
x
,
float
y
,
float
z
)
:
data
({
{
x
,
y
,
z
}
})
{}
Vec
(
float
x
,
float
y
,
float
z
,
float
w
)
:
data
({
x
,
y
,
z
,
w
})
{}
Vec
()
=
default
;
...
...
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