From bf2281d36633e69acb573206d36a709b1eeba9ca Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 7 Apr 2012 02:03:17 +0000 Subject: [PATCH] Fix operator typo (#4824). git-svn-id: svn://localhost/ardour2/branches/3.0@11812 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_state.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index ae668c8730..651f365dad 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -3054,7 +3054,7 @@ struct null_deleter { void operator()(void const *) const {} }; void Session::remove_controllable (Controllable* c) { - if (_state_of_the_state | Deletion) { + if (_state_of_the_state & Deletion) { return; }