summaryrefslogtreecommitdiff
path: root/modules/codec
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-09-23 17:48:58 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-09-23 17:48:58 +0200
commit62500475dfdc59040e4e3da508d61c4a3b50a773 (patch)
treea2b46ac527720f076e88ed80bce2ffb24262e1e7 /modules/codec
parent0cac37e9f6062090b22d5ef8c19517a451176f33 (diff)
downloadforstio-forstio-62500475dfdc59040e4e3da508d61c4a3b50a773.tar.gz
Fix typo
Diffstat (limited to 'modules/codec')
-rw-r--r--modules/codec/c++/math.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/codec/c++/math.hpp b/modules/codec/c++/math.hpp
index c7da99e..d33482d 100644
--- a/modules/codec/c++/math.hpp
+++ b/modules/codec/c++/math.hpp
@@ -36,7 +36,7 @@ data<schema::Vector<T,D>, Encoding> normalize(const data<schema::Vector<T,D>>& i
saw::data<schema::Vector<T,D>, Encoding> out;
for(uint64_t i = 0u; i < D; ++i){
- out.at({{i}}).set(input.at({{i}})).get() / sqrt_inp_dot.at({}).get());
+ out.at({{i}}).set(input.at({{i}}).get() / sqrt_inp_dot.at({}).get());
}
return out;
}