From 4c58728d246f35a01bb166d8d7821f0af032fd0f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 27 Jan 2013 16:14:50 +0000 Subject: Remove unused fields. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5012 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/CompiledGraph.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/server/CompiledGraph.hpp b/src/server/CompiledGraph.hpp index 21b93058..ed67ca22 100644 --- a/src/server/CompiledGraph.hpp +++ b/src/server/CompiledGraph.hpp @@ -34,7 +34,7 @@ class BlockImpl; class CompiledBlock { public: CompiledBlock(BlockImpl* b, size_t np, const std::list& deps) - : _block(b), _n_providers(np) + : _block(b) { // Copy to a vector for maximum iteration speed and cache optimization // (Need to take a copy anyway) @@ -45,12 +45,10 @@ public: } BlockImpl* block() const { return _block; } - size_t n_providers() const { return _n_providers; } const std::vector& dependants() const { return _dependants; } private: BlockImpl* _block; - size_t _n_providers; ///< Number of input ready signals to trigger run std::vector _dependants; ///< Blocks this one's output ports are connected to }; -- cgit v1.2.1