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
ad6eab8b
Commit
ad6eab8b
authored
May 08, 2018
by
Jan Möbius
Browse files
Fixed clang warning
parent
dcc6b433
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Unittests/unittests_common_customtraits.hh
View file @
ad6eab8b
...
...
@@ -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