From ca30328e8f75038a659721027aa11f764670e32e Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sun, 26 Jul 2015 19:08:33 -0400 Subject: [PATCH] Revert "Fix Travis Build (const in structure)" This reverts commit 13c17d3d5da5fdaf5d0f0ea99886b06194f4fc41. --- src/TrackArtist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TrackArtist.cpp b/src/TrackArtist.cpp index 460a942ce..4bc3b4034 100644 --- a/src/TrackArtist.cpp +++ b/src/TrackArtist.cpp @@ -1636,8 +1636,8 @@ struct ClipParameters namespace { struct WavePortion { wxRect rect; - /*const*/ double averageZoom; - /*const*/ bool inFisheye; + const double averageZoom; + const bool inFisheye; WavePortion(int x, int y, int w, int h, double zoom, bool i) : rect(x, y, w, h), averageZoom(zoom), inFisheye(i) {}