summaryrefslogtreecommitdiff
path: root/vest/error_surface.h
diff options
context:
space:
mode:
Diffstat (limited to 'vest/error_surface.h')
-rw-r--r--vest/error_surface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vest/error_surface.h b/vest/error_surface.h
index a8734f54..ad728cfa 100644
--- a/vest/error_surface.h
+++ b/vest/error_surface.h
@@ -10,8 +10,8 @@ class Score;
struct ErrorSegment {
double x;
- Score* delta;
- ErrorSegment() : x(0), delta(NULL) {}
+ ScoreP delta;
+ ErrorSegment() : x(0), delta() {}
};
class ErrorSurface : public std::vector<ErrorSegment> {