summaryrefslogtreecommitdiff
path: root/src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-01 06:03:29 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-01 06:03:29 +0000
commitfda43b1fde4774909c632a0604ae7ad05a660d3a (patch)
treea88abda1b405b7e0baa56ff8d08d68f4829e7ad4 /src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h
parentd070c2916225acdd928db5929c0cab02589ca8a8 (diff)
Fix cppcheck
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/relaxed-witness@2122 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 92d11c064056138ce4aa8cbe3a42df29a8a5ca7d
Diffstat (limited to 'src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h')
-rw-r--r--src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h b/src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h
index 6870c183..fb669ef8 100644
--- a/src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h
+++ b/src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h
@@ -83,13 +83,13 @@ class Euclidean_strong_witness_complex
const WitnessRange & witnesses)
: landmarks_(std::begin(landmarks), std::end(landmarks)), landmark_tree_(landmarks_) {
nearest_landmark_table_.reserve(boost::size(witnesses));
- for (auto w: witnesses)
+ for (auto w : witnesses)
nearest_landmark_table_.push_back(landmark_tree_.query_incremental_nearest_neighbors(w));
}
/** \brief Returns the point corresponding to the given vertex.
*/
- template <typename Vertex_handle>
+ template <typename Vertex_handle>
Point_d get_point(Vertex_handle vertex) const {
return landmarks_[vertex];
}
@@ -101,4 +101,4 @@ class Euclidean_strong_witness_complex
} // namespace Gudhi
-#endif // EUCLIDEAN_STRONG_WITNESS_COMPLEX_H_
+#endif // EUCLIDEAN_STRONG_WITNESS_COMPLEX_H_