25 lines
722 B
Diff
25 lines
722 B
Diff
From 70ea8ba2c50be2a4bc476261e7640d824b938c99 Mon Sep 17 00:00:00 2001
|
|
From: Stephan Hartmann <stha09@googlemail.com>
|
|
Date: Sat, 13 Jun 2020 18:16:27 +0000
|
|
Subject: [PATCH] IWYU: add missing include for memset
|
|
|
|
---
|
|
ui/events/ozone/evdev/event_device_info.cc | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/ui/events/ozone/evdev/event_device_info.cc b/ui/events/ozone/evdev/event_device_info.cc
|
|
index efbc258..0c5f0a3 100644
|
|
--- a/ui/events/ozone/evdev/event_device_info.cc
|
|
+++ b/ui/events/ozone/evdev/event_device_info.cc
|
|
@@ -5,6 +5,7 @@
|
|
#include "ui/events/ozone/evdev/event_device_info.h"
|
|
|
|
#include <linux/input.h>
|
|
+#include <string.h>
|
|
|
|
#include "base/files/file_path.h"
|
|
#include "base/logging.h"
|
|
--
|
|
2.26.2
|
|
|