summaryrefslogtreecommitdiff
path: root/libs/ardour/session_butler.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-11-25 02:11:44 -0500
committerDavid Robillard <d@drobilla.net>2014-11-25 02:11:44 -0500
commitea5876b8364beb3b1b2fb82909b00ff107dbb6ca (patch)
treea8066bf0013f380852ef358d450faa362dd55977 /libs/ardour/session_butler.cc
parent8b268344f945ca2be683d9f5356951685752ce8f (diff)
Remove dead code.
Diffstat (limited to 'libs/ardour/session_butler.cc')
-rw-r--r--libs/ardour/session_butler.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/libs/ardour/session_butler.cc b/libs/ardour/session_butler.cc
index 3e7c2226cc..613233cacb 100644
--- a/libs/ardour/session_butler.cc
+++ b/libs/ardour/session_butler.cc
@@ -34,20 +34,6 @@ using namespace std;
using namespace ARDOUR;
using namespace PBD;
-/* XXX put this in the right place */
-
-static inline uint32_t next_power_of_two (uint32_t n)
-{
- --n;
- n |= n >> 16;
- n |= n >> 8;
- n |= n >> 4;
- n |= n >> 2;
- n |= n >> 1;
- ++n;
- return n;
-}
-
/*---------------------------------------------------------------------------
BUTLER THREAD
---------------------------------------------------------------------------*/