mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-01-22 03:41:13 +00:00
Fix compilation error in Linux libc++ builds due to use of tr1/.
Patch by Sergey Matveev <earthdok@chromium.org> BUG=chromium:391792 Review URL: https://breakpad.appspot.com/7674002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1345 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
f88336d4a1
commit
21384ad0e2
|
@ -46,7 +46,11 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#include <algorithm>
|
||||
#if defined(_LIBCPP_VERSION)
|
||||
#include <unordered_set>
|
||||
#else
|
||||
#include <tr1/unordered_set>
|
||||
#endif
|
||||
#include <utility>
|
||||
|
||||
#include "common/dwarf_line_to_module.h"
|
||||
|
@ -56,7 +60,11 @@ namespace google_breakpad {
|
|||
using std::map;
|
||||
using std::pair;
|
||||
using std::sort;
|
||||
#if defined(_LIBCPP_VERSION)
|
||||
using std::unordered_set;
|
||||
#else
|
||||
using std::tr1::unordered_set;
|
||||
#endif
|
||||
using std::vector;
|
||||
|
||||
// Data provided by a DWARF specification DIE.
|
||||
|
|
Loading…
Reference in a new issue