diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2018-08-08 10:33:24 -0700 |
---|---|---|
committer | Pirama Arumuga Nainar <pirama@google.com> | 2018-09-21 10:46:25 -0700 |
commit | 29e3dd8548dbaa8c14b8092f4407e1cc3256c35a (patch) | |
tree | 3057b83836aa0544b29e28ab40abd7a40de808d5 /adb/transport_usb.cpp | |
parent | 11c7f43b90fab5e2689d623d752bb68e9804a8cf (diff) | |
download | system_core-29e3dd8548dbaa8c14b8092f4407e1cc3256c35a.tar.gz system_core-29e3dd8548dbaa8c14b8092f4407e1cc3256c35a.tar.bz2 system_core-29e3dd8548dbaa8c14b8092f4407e1cc3256c35a.zip |
Adapt to switch to libc++ for Windows
Bug: http://b/91353691
- libcxx has ETXTBSY for Windows
- adb/sysdeps/memory.h is no longer needed
Test: Build and test Windows binaries under Wine.
Change-Id: I9c27087d46c49cb25b391c4adae8d9e24724784d
Diffstat (limited to 'adb/transport_usb.cpp')
-rw-r--r-- | adb/transport_usb.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/adb/transport_usb.cpp b/adb/transport_usb.cpp index 602970ca6..c471bf985 100644 --- a/adb/transport_usb.cpp +++ b/adb/transport_usb.cpp @@ -16,8 +16,9 @@ #define TRACE_TAG TRANSPORT +#include <memory> + #include "sysdeps.h" -#include "sysdeps/memory.h" #include "transport.h" #include <stdio.h> |