diff src/Path.h @ 188:487261a22b18 re-minimise

distance_t * diagonalWeight might not fit in distance_t; use pathcost_t for it. Also remove C-style casts.
author Chris Cannam
date Thu, 26 Feb 2015 12:19:17 +0000
parents 16870e8770ae
children 175c8f044e7c
line wrap: on
line diff
--- a/src/Path.h	Thu Feb 26 10:48:36 2015 +0000
+++ b/src/Path.h	Thu Feb 26 12:19:17 2015 +0000
@@ -38,8 +38,8 @@
 protected:
     static const int MAX_RUN_LENGTH = 50;
 
-    std::vector<int> val;
-    std::vector<int> len;
+    std::vector<int> m_val;
+    std::vector<int> m_len;
 };
 
 #endif