diff --git a/src/db/db/dbCompoundOperation.h b/src/db/db/dbCompoundOperation.h index 1a6bb1205..0d7072396 100644 --- a/src/db/db/dbCompoundOperation.h +++ b/src/db/db/dbCompoundOperation.h @@ -201,6 +201,11 @@ public: */ virtual bool wants_variants () const { return false; } + /** + * @brief Indicates that the node expects calls through do_compute_local in the properties flavor + */ + virtual bool wants_properties () const { return false; } + void compute_local (CompoundRegionOperationCache *cache, db::Layout *layout, db::Cell *cell, const shape_interactions &interactions, std::vector > &results, const db::LocalProcessorBase *proc) const { implement_compute_local (cache, layout, cell, interactions, results, proc); @@ -349,11 +354,6 @@ protected: virtual std::string generated_description () const; virtual bool wants_caching () const { return true; } - /** - * @brief Indicates that the node expects calls through do_compute_local in the properties flavor - */ - virtual bool wants_properties () const { return false; } - private: std::string m_description; db::Coord m_dist;