aboutsummaryrefslogtreecommitdiffstats
path: root/include/chilbert/chilbert.ipp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-03 13:53:20 -0400
committerDavid Robillard <d@drobilla.net>2023-05-03 13:53:20 -0400
commit5c8e540e6b40578068cd470a9857e94f77458787 (patch)
treec8b14a34020de73f14fe9bf852dec61f5e36e408 /include/chilbert/chilbert.ipp
parent25255321bc29f0961ec15aa3bb668f946674e52b (diff)
downloadchilbert-5c8e540e6b40578068cd470a9857e94f77458787.tar.gz
chilbert-5c8e540e6b40578068cd470a9857e94f77458787.tar.bz2
chilbert-5c8e540e6b40578068cd470a9857e94f77458787.zip
Fix unused parameter warnings
Diffstat (limited to 'include/chilbert/chilbert.ipp')
-rw-r--r--include/chilbert/chilbert.ipp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/chilbert/chilbert.ipp b/include/chilbert/chilbert.ipp
index 8eda120..1c63178 100644
--- a/include/chilbert/chilbert.ipp
+++ b/include/chilbert/chilbert.ipp
@@ -134,6 +134,8 @@ template<class I>
inline void
transform_inv(const I& e, const size_t d, const size_t n, I& a)
{
+ (void)n;
+
assert(a.size() == n);
a.rotl(d);
a ^= e;