diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-07-08 15:42:07 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-07-08 15:42:07 -0400 |
| commit | 2079963d80af9a45ae91c7f09590806992c295fa (patch) | |
| tree | 31b924f524bb32bf89cc516bc7d826e7d6b091b2 /Source/Core | |
| parent | 31c083bf64db8b42a2dd08adbf6d4e98402db997 (diff) | |
| parent | c38ae5236e082c0b635085fced60559170ee9a8e (diff) | |
Merge pull request #2726 from rohit-n/build-pch
Fix building with PCH disabled.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Common/Logging/Log.h | 3 | ||||
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/Common/Logging/Log.h b/Source/Core/Common/Logging/Log.h index 23fd6fca10..b95b7048b5 100644 --- a/Source/Core/Common/Logging/Log.h +++ b/Source/Core/Common/Logging/Log.h @@ -4,6 +4,9 @@ #pragma once +#include "Common/CommonFuncs.h" +#include "Common/MsgHandler.h" + namespace LogTypes { diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp index 9b31da73c4..75384393b6 100644 --- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp +++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include <fcntl.h> #include <libudev.h> #include <unistd.h> |
