From 682b1da129e2f61109d83463cec344bde7392e9a Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Fri, 1 Feb 2013 01:02:55 +0100 Subject: [PATCH] Give SizeStoringEffect an effect_type_id(), for easier debugging of the unit test. --- effect_chain_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/effect_chain_test.cpp b/effect_chain_test.cpp index c17ec89..51412c0 100644 --- a/effect_chain_test.cpp +++ b/effect_chain_test.cpp @@ -767,6 +767,7 @@ public: input_width = width; input_height = height; } + virtual std::string effect_type_id() const { return "SizeStoringEffect"; } int input_width, input_height; }; -- 2.39.2