diff options
author | Pavel Labath <labath@google.com> | 2016-01-08 10:07:04 -0500 |
---|---|---|
committer | Mark Mentovai <mark@chromium.org> | 2016-01-08 10:07:04 -0500 |
commit | 68039850bc47036133ea394f38fe6840176ff2f6 (patch) | |
tree | 4248c4bc46a13ce74a98e4af1bbc143f4600a0e6 | |
parent | Fix compilation of breakpad on Linux. (diff) | |
download | breakpad-68039850bc47036133ea394f38fe6840176ff2f6.tar.xz |
disassembler_x86: Remove unused include
This file is not present on windows, and it's causing build errors
there. As far as I can tell, nothing in this file actually uses
that include, so I just remove it.
BUG=
R=mark@chromium.org
Review URL: https://codereview.chromium.org/1475353002 .
Patch from Pavel Labath <labath@google.com>.
-rw-r--r-- | src/processor/disassembler_x86.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/processor/disassembler_x86.cc b/src/processor/disassembler_x86.cc index 9eba848d..55902240 100644 --- a/src/processor/disassembler_x86.cc +++ b/src/processor/disassembler_x86.cc @@ -27,7 +27,6 @@ #include "processor/disassembler_x86.h" #include <string.h> -#include <unistd.h> namespace google_breakpad { |