Aligned storage something something

recently i updated visual studio and now i always get tons of warnings for some juce code that allocates some memory with a deprecated class. is this a known bug already? what’s the best way to stop it from doing that?

The easiest way would be to change your compiler-standard setting from “latest” to C++20. Latest ist C++23 which deprecated std::aligned_storage.

1 Like