summaryrefslogtreecommitdiff
path: root/src/Bottleneck
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-04-07 13:48:51 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-04-07 13:48:51 +0000
commitcb457ffb26e05ed619eb55676ae6d569f7497284 (patch)
treed5dc99fc7e33bd745c1971f277b431c85274576a /src/Bottleneck
parentee079994aca5953c741433fa3077a2c565f4ab30 (diff)
parent796945fff0a49073d28a56400390594e5ba2371b (diff)
Visual studio compilation errors fix
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@546 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 1d32447982b00f48c85124dbfbec51b3a601bd9c
Diffstat (limited to 'src/Bottleneck')
-rw-r--r--src/Bottleneck/include/gudhi/Persistence_diagrams_graph.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Bottleneck/include/gudhi/Persistence_diagrams_graph.h b/src/Bottleneck/include/gudhi/Persistence_diagrams_graph.h
index 7e278209..73ad940b 100644
--- a/src/Bottleneck/include/gudhi/Persistence_diagrams_graph.h
+++ b/src/Bottleneck/include/gudhi/Persistence_diagrams_graph.h
@@ -34,7 +34,7 @@ namespace Gudhi {
namespace bottleneck {
// Diagram_point is the type of the persistence diagram's points
-typedef typename std::pair<double, double> Diagram_point;
+typedef std::pair<double, double> Diagram_point;
// Return the used index for encoding none of the points
int null_point_index();
@@ -81,7 +81,7 @@ Persistence_diagrams_graph::Persistence_diagrams_graph(Persistence_diagram1& dia
swap(u, v);
}
-Persistence_diagrams_graph::Persistence_diagrams_graph::Persistence_diagrams_graph()
+Persistence_diagrams_graph::Persistence_diagrams_graph()
: u(), v() { }
inline bool Persistence_diagrams_graph::on_the_u_diagonal(int u_point_index) const {
@@ -108,7 +108,7 @@ inline double Persistence_diagrams_graph::distance(int u_point_index, int v_poin
return 0;
Diagram_point p_u = get_u_point(u_point_index);
Diagram_point p_v = get_v_point(v_point_index);
- return std::max(std::fabs(p_u.first - p_v.first), std::fabs(p_u.second - p_v.second));
+ return (std::max)(std::fabs(p_u.first - p_v.first), std::fabs(p_u.second - p_v.second));
}
inline int Persistence_diagrams_graph::size() const {