Missing semicolon
This commit is contained in:
parent
ab07b548fe
commit
7a70fac564
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ void LinearEnvelope<Type>::getQuantizedBlock(absl::Span<Type> output, Type quant
|
||||||
|
|
||||||
auto quantize = [quantizationStep](Type value) -> Type {
|
auto quantize = [quantizationStep](Type value) -> Type {
|
||||||
return static_cast<int>(value / quantizationStep) * quantizationStep;
|
return static_cast<int>(value / quantizationStep) * quantizationStep;
|
||||||
}
|
};
|
||||||
|
|
||||||
currentValue = quantize(currentValue);
|
currentValue = quantize(currentValue);
|
||||||
const auto outputSize = static_cast<int>(output.size());
|
const auto outputSize = static_cast<int>(output.size());
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue