* include/std/stdexcept (__sso_string): Don't use non-static member
in sizeof.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@221118
138bc75d-0d04-0410-961f-
82ee72b054a4
+2015-03-02 Jonathan Wakely <jwakely@redhat.com>
+
+ PR libstdc++/64367
+ * include/std/stdexcept (__sso_string): Don't use non-static member
+ in sizeof.
+
2015-02-28 Matthias Klose <doko@ubuntu.com>
PR libstdc++/65246
union {
__str _M_s;
- char _M_bytes[sizeof(_M_s)];
+ char _M_bytes[sizeof(__str)];
};
__sso_string() _GLIBCXX_USE_NOEXCEPT;