summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/dcp_content.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h
index 18d198fe8..434b61046 100644
--- a/src/lib/dcp_content.h
+++ b/src/lib/dcp_content.h
@@ -124,6 +124,11 @@ public:
return _cpl;
}
+ std::string name () const {
+ boost::mutex::scoped_lock lm (_mutex);
+ return _name;
+ }
+
private:
friend class reels_test5;
@@ -137,11 +142,6 @@ private:
std::list<std::string>& why_not
) const;
- std::string name () const {
- boost::mutex::scoped_lock lm (_mutex);
- return _name;
- }
-
std::string _name;
/** true if our DCP is encrypted */
bool _encrypted;