summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/parameter_descriptor.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-06-19 12:40:51 +0200
committerRobin Gareus <robin@gareus.org>2017-06-21 18:12:20 +0200
commitcb48bb0e1ccdd8a8324e53e716b2058c2ef3c297 (patch)
tree263fbe26a08147af1b6cbcfa20322533ec786247 /libs/ardour/ardour/parameter_descriptor.h
parent555fcb89e541a8aaf1beb3df234e60569a667876 (diff)
remove min/max unbound -- LADSPA special case.
This explicit case should never have existed in the first place. Plugins can always implicitly exceed the range and are expected to cope with out-of-range values (e.g. meters when fed with a peaking signal may return an out-of-bounds value)
Diffstat (limited to 'libs/ardour/ardour/parameter_descriptor.h')
-rw-r--r--libs/ardour/ardour/parameter_descriptor.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/ardour/ardour/parameter_descriptor.h b/libs/ardour/ardour/parameter_descriptor.h
index 60950bb14b..2348b05903 100644
--- a/libs/ardour/ardour/parameter_descriptor.h
+++ b/libs/ardour/ardour/parameter_descriptor.h
@@ -70,8 +70,6 @@ struct LIBARDOUR_API ParameterDescriptor : public Evoral::ParameterDescriptor
float largestep;
bool integer_step;
bool sr_dependent;
- bool min_unbound;
- bool max_unbound;
bool enumeration;
};