summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/transform.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/transform.h')
-rw-r--r--libs/ardour/ardour/transform.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/ardour/transform.h b/libs/ardour/ardour/transform.h
index 2b63bb6af0..08e4a43521 100644
--- a/libs/ardour/ardour/transform.h
+++ b/libs/ardour/ardour/transform.h
@@ -106,7 +106,8 @@ public:
ADD, ///< Add top two values
SUB, ///< Subtract top from second-top
MULT, ///< Multiply top two values
- DIV ///< Divide second-top by top
+ DIV, ///< Divide second-top by top
+ MOD ///< Modulus (division remainder)
};
Operation(Operator o, const Value& a=Value()) : op(o), arg(a) {}