summaryrefslogtreecommitdiff
path: root/libs/ardour/region_factory.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-10-29 15:52:38 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-10-29 15:52:38 +0000
commitf871d665d59e3b95f9d47a80e5caead15d9a705b (patch)
tree65d974f6d179804d4c7c5292b24847ae7b9a4a3a /libs/ardour/region_factory.cc
parent70f4ee1b55bdbdc72955c4b813c8d627b116428a (diff)
tweaks to boost debug related code, from a boost debugging session
git-svn-id: svn://localhost/ardour2/branches/3.0@10336 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/region_factory.cc')
-rw-r--r--libs/ardour/region_factory.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/ardour/region_factory.cc b/libs/ardour/region_factory.cc
index 2c1a451335..fba60fe0a0 100644
--- a/libs/ardour/region_factory.cc
+++ b/libs/ardour/region_factory.cc
@@ -82,7 +82,7 @@ RegionFactory::create (boost::shared_ptr<const Region> region, bool announce)
}
#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
- boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+ // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
#endif
return ret;
}
@@ -119,7 +119,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, const PropertyList& pli
}
#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
- boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+ // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
#endif
return ret;
}
@@ -156,7 +156,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, frameoffset_t offset, c
}
#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
- boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+ // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
#endif
return ret;
}
@@ -193,7 +193,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, const SourceList& srcs,
}
#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
- boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+ // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
#endif
return ret;
}
@@ -233,7 +233,7 @@ RegionFactory::create (const SourceList& srcs, const PropertyList& plist, bool a
}
#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
- boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+ // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
#endif
return ret;
}
@@ -273,7 +273,7 @@ RegionFactory::create (SourceList& srcs, const XMLNode& node)
}
#ifdef BOOST_SP_ENABLE_DEBUG_HOOKS
- boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
+ // boost_debug_shared_ptr_mark_interesting (ret.get(), "Region");
#endif
return ret;
}