diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-01-08 13:14:01 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-01-08 13:14:01 +0000 |
commit | 6e6b99370b1656aadce39ad85be54ee0f898294c (patch) | |
tree | 47d299aa164f0adc41e7141f9cf6dcb948714b86 /libstdc++-v3 | |
parent | 38b759f72f052afd8b98b1ecb558661ee08d4caa (diff) | |
download | gcc-6e6b99370b1656aadce39ad85be54ee0f898294c.tar.gz |
Add missing include for std::__addressof
PR libstdc++/69160
* include/bits/uses_allocator.h: Add missing include.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232162 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/uses_allocator.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 782bae99675..8a11aa684f3 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2016-01-08 Jonathan Wakely <jwakely@redhat.com> + + PR libstdc++/69160 + * include/bits/uses_allocator.h: Add missing include. + 2016-01-07 Jonathan Wakely <jwakely@redhat.com> PR libstdc++/69105 diff --git a/libstdc++-v3/include/bits/uses_allocator.h b/libstdc++-v3/include/bits/uses_allocator.h index b3c3f60510e..70ba0076a16 100644 --- a/libstdc++-v3/include/bits/uses_allocator.h +++ b/libstdc++-v3/include/bits/uses_allocator.h @@ -30,6 +30,7 @@ #else #include <type_traits> +#include <bits/move.h> namespace std _GLIBCXX_VISIBILITY(default) { |