summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2007-03-02 02:30:07 +0000
committerTaybin Rutkin <taybin@taybin.com>2007-03-02 02:30:07 +0000
commit918109c5551dabe03c31ccd65f5393244bc0c9ee (patch)
tree88bc11a4124e197aa9f7af2a06b3316674cbffa8 /libs/pbd
parentf942909c77879e4fff9eacb2fe2c9008fef55286 (diff)
Fix for compiler warnings and errors.
git-svn-id: svn://localhost/ardour2/trunk@1547 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/pbd/rcu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/pbd/rcu.h b/libs/pbd/pbd/rcu.h
index c9088d51df..8b0b8b3548 100644
--- a/libs/pbd/pbd/rcu.h
+++ b/libs/pbd/pbd/rcu.h
@@ -25,7 +25,7 @@ class RCUManager
protected:
union {
boost::shared_ptr<T>* m_rcu_value;
- volatile gpointer gptr;
+ mutable volatile gpointer gptr;
} x;
};