This is an ABI break iff the defaulted SMF becomes trivial; for example, std::stack<char, trivial_fixed_capacity_vector<char, 8>> is trivially copyable after this change, which affects the calling convention when passing it by value.
Example: https://godbolt.org/z/Kjwe-5
Also, std::stack<T, fixed_capacity_vector<T, N>> is nothrow-copy-constructible after this change; that's not an ABI break but it is detectable.