diff options
author | Nelson Billing <nbilling@google.com> | 2019-06-24 17:16:46 -0700 |
---|---|---|
committer | Nelson Billing <nbilling@google.com> | 2019-06-25 00:28:04 +0000 |
commit | e1b5fef027efbd56063736ed56da73dc0caf6b92 (patch) | |
tree | e6ad03d7b5800ab7af52a78cddef050f1140ec6a /src/tools/windows/dump_syms | |
parent | Fix breakpad client build. (diff) | |
download | breakpad-e1b5fef027efbd56063736ed56da73dc0caf6b92.tar.xz |
Fix dump_syms clang Windows build.
- Put FileHeaderMachineToCpuString definition in header.
- Remove extra semi-colon.
Change-Id: I726ad0f73c57908576414fd828052dff09f5c51f
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/1673142
Reviewed-by: Mark Mentovai <mark@chromium.org>
Diffstat (limited to 'src/tools/windows/dump_syms')
-rw-r--r-- | src/tools/windows/dump_syms/dump_syms.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/windows/dump_syms/dump_syms.cc b/src/tools/windows/dump_syms/dump_syms.cc index a61434be..5b7d1777 100644 --- a/src/tools/windows/dump_syms/dump_syms.cc +++ b/src/tools/windows/dump_syms/dump_syms.cc @@ -38,7 +38,7 @@ #include "common/windows/pdb_source_line_writer.h" #include "common/windows/pe_source_line_writer.h" -using std::wstring;; +using std::wstring; using google_breakpad::PDBSourceLineWriter; using google_breakpad::PESourceLineWriter; using std::unique_ptr; |