summaryrefslogtreecommitdiff
path: root/libs/pbd/property.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/property.cc')
-rw-r--r--libs/pbd/property.cc19
1 files changed, 0 insertions, 19 deletions
diff --git a/libs/pbd/property.cc b/libs/pbd/property.cc
index 58e81c056b..93d4738cd7 100644
--- a/libs/pbd/property.cc
+++ b/libs/pbd/property.cc
@@ -26,22 +26,3 @@
using namespace PBD;
-PropertyChange
-PBD::new_change ()
-{
- static uint64_t change_bit = 1;
-
- /* catch out-of-range */
- if (!change_bit) {
- fatal << _("programming error: ")
- << "change_bit out of range in ARDOUR::new_change()"
- << endmsg;
- /*NOTREACHED*/
- }
-
- PropertyChange c = PropertyChange (change_bit);
- change_bit <<= 1; // if it shifts too far, change_bit == 0
-
- return c;
-}
-