Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenVolumeMesh
OpenVolumeMesh
Commits
fc9ff0ce
Commit
fc9ff0ce
authored
Oct 21, 2016
by
Max Lyon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor coding style change
parent
122b292b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/OpenVolumeMesh/Core/Iterators.hh
src/OpenVolumeMesh/Core/Iterators.hh
+2
-2
src/Unittests/unittests_iterators.cc
src/Unittests/unittests_iterators.cc
+3
-3
No files found.
src/OpenVolumeMesh/Core/Iterators.hh
View file @
fc9ff0ce
...
...
@@ -142,14 +142,14 @@ using is_ovm_iterator = std::is_base_of<BaseIterator<typename std::remove_const<
// so we can use range-for, e.g. for(const auto &vh: mesh.vertices()) works.
template
<
class
I
>
typename
std
::
enable_if
<
is_ovm_iterator
<
I
>::
value
,
I
>::
type
begin
(
const
std
::
pair
<
I
,
I
>
&
iterpair
)
begin
(
const
std
::
pair
<
I
,
I
>&
iterpair
)
{
return
iterpair
.
first
;
}
template
<
class
I
>
typename
std
::
enable_if
<
is_ovm_iterator
<
I
>::
value
,
I
>::
type
end
(
const
std
::
pair
<
I
,
I
>
&
iterpair
)
end
(
const
std
::
pair
<
I
,
I
>&
iterpair
)
{
return
iterpair
.
second
;
}
...
...
src/Unittests/unittests_iterators.cc
View file @
fc9ff0ce
...
...
@@ -26,8 +26,8 @@ TEST_F(HexahedralMeshBase, HexVertexIterTest) {
TEST_F
(
HexahedralMeshBase
,
RangeForTest
)
{
// no EXPECTs here, if it compiles, it'll work.
generateHexahedralMesh
(
mesh_
);
for
(
const
auto
&
vh
:
mesh_
.
vertices
())
{}
const
auto
&
constref
=
mesh_
;
for
(
const
auto
&
vh
:
constref
.
vertices
())
{}
for
(
const
auto
&
vh
:
mesh_
.
vertices
())
{}
const
auto
&
constref
=
mesh_
;
for
(
const
auto
&
vh
:
constref
.
vertices
())
{}
}
#endif
Write
Preview
Markdown
is supported
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