forked from OSchip/llvm-project
[libcxx] [test] Add missing <stdexcept> to map at tests.
Reviewed as https://reviews.llvm.org/D50551 llvm-svn: 344821
This commit is contained in:
parent
e04704b9a9
commit
1fc51f29d7
|
@ -14,8 +14,9 @@
|
|||
// mapped_type& at(const key_type& k);
|
||||
// const mapped_type& at(const key_type& k) const;
|
||||
|
||||
#include <map>
|
||||
#include <cassert>
|
||||
#include <map>
|
||||
#include <stdexcept>
|
||||
|
||||
#include "min_allocator.h"
|
||||
#include "test_macros.h"
|
||||
|
|
|
@ -16,9 +16,10 @@
|
|||
// mapped_type& at(const key_type& k);
|
||||
// const mapped_type& at(const key_type& k) const;
|
||||
|
||||
#include <unordered_map>
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
|
||||
#include "MoveOnly.h"
|
||||
#include "min_allocator.h"
|
||||
|
|
Loading…
Reference in New Issue