Merge "Fix exit-time-destructor warning"

am: ae74e42d25

Change-Id: Iaba5af629a1eeaf2e5d7abe5f94662119adea424
This commit is contained in:
Pirama Arumuga Nainar 2018-06-06 17:12:45 -07:00 committed by android-build-merger
commit a40b43eb45

View file

@ -75,7 +75,7 @@ struct usb_handle : public ::usb_handle {
static const GUID usb_class_id = ANDROID_USB_CLASS_ID;
/// List of opened usb handles
static std::vector<usb_handle*> handle_list;
static std::vector<usb_handle*>& handle_list = *new std::vector<usb_handle*>();
/// Locker for the list of opened usb handles
static std::mutex& usb_lock = *new std::mutex();