mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Use more concise stdlib type aliases
This commit is contained in:
parent
21d87c02c2
commit
7c14c1fcd7
36 changed files with 438 additions and 494 deletions
|
|
@ -1177,7 +1177,7 @@ private:
|
|||
jassert (size >= 0);
|
||||
|
||||
auto channelListSize = (size_t) (numChannels + 1) * sizeof (Type*);
|
||||
auto requiredSampleAlignment = std::alignment_of<Type>::value;
|
||||
auto requiredSampleAlignment = std::alignment_of_v<Type>;
|
||||
size_t alignmentOverflow = channelListSize % requiredSampleAlignment;
|
||||
|
||||
if (alignmentOverflow != 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue