From 329587efd35fdbbd35bfd7e05538246913ecc0c1 Mon Sep 17 00:00:00 2001 From: David Mayerich Date: Thu, 17 Aug 2017 08:16:02 -0500 Subject: [PATCH] fixed compiler error in a cylinder.h constructor --- stim/visualization/cylinder.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stim/visualization/cylinder.h b/stim/visualization/cylinder.h index 145fac0..f70c679 100644 --- a/stim/visualization/cylinder.h +++ b/stim/visualization/cylinder.h @@ -58,7 +58,8 @@ public: cylinder(stim::centerline p, std::vector s) { - d = s; + //was d = s; + p = s; init(); } -- libgit2 0.21.4