summaryrefslogtreecommitdiff
path: root/content/math/transforms/orTransform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'content/math/transforms/orTransform.cpp')
-rw-r--r--content/math/transforms/orTransform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/math/transforms/orTransform.cpp b/content/math/transforms/orTransform.cpp
index eb1da44..d0122bf 100644
--- a/content/math/transforms/orTransform.cpp
+++ b/content/math/transforms/orTransform.cpp
@@ -1,5 +1,5 @@
void fft(vector<ll>& a, bool inv = false) {
- int n = sz(a);
+ int n = ssize(a);
for (int s = 1; s < n; s *= 2) {
for (int i = 0; i < n; i += 2 * s) {
for (int j = i; j < i + s; j++) {