From b3fdd29f6ca5d2f43eed835a1b02723fc8d0fd53 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 29 Nov 2014 16:43:25 +0000 Subject: Remove the continue on error options for plugables and add proper handling into implementations where errors can be ignored --- project2/common/instanceStore.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'project2/common/instanceStore.h') diff --git a/project2/common/instanceStore.h b/project2/common/instanceStore.h index 5557b43..9a669ef 100644 --- a/project2/common/instanceStore.h +++ b/project2/common/instanceStore.h @@ -37,7 +37,7 @@ class InstanceMap : public InstanceStore(InstanceStore::GetAll(), n); } - static void OnEach(const boost::function & func, bool ContinueOnError = false); + static void OnEach(const boost::function & func); }; /// Anonymous collection of instances @@ -45,7 +45,7 @@ template class InstanceSet : public InstanceStore>> { public: typedef InstanceStore>> IStore; - static void OnAll(const boost::function & func, bool ContinueOnError = false); + static void OnAll(const boost::function & func); static void Remove(const boost::shared_ptr &); }; -- cgit v1.2.3