summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2016-06-26 02:13:47 -0400
committerGitHub <noreply@github.com>2016-06-26 02:13:47 -0400
commitcf50ed82bb20ec48bf181a65fad165d4846e1db9 (patch)
tree0ad835691ceb3f159c6fdda4159290d7d13fa1e2 /Source/Core/InputCommon
parentc8966453134cdf3b0f65750a1337492b90c732d4 (diff)
parentbe922730b3cc5d2d2bd8419f02ddb820113d0ee8 (diff)
Merge pull request #3943 from ShadowsFriend/nopch-fix
ControllerInterface: Include memory to fix building without pch
Diffstat (limited to 'Source/Core/InputCommon')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Device.cpp1
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Device.h1
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp1
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ExpressionParser.h1
4 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Device.cpp b/Source/Core/InputCommon/ControllerInterface/Device.cpp
index ddd7af075a..401e5b035b 100644
--- a/Source/Core/InputCommon/ControllerInterface/Device.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/Device.cpp
@@ -2,6 +2,7 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include <memory>
#include <sstream>
#include <string>
#include <tuple>
diff --git a/Source/Core/InputCommon/ControllerInterface/Device.h b/Source/Core/InputCommon/ControllerInterface/Device.h
index 23c499ec9d..07ca219185 100644
--- a/Source/Core/InputCommon/ControllerInterface/Device.h
+++ b/Source/Core/InputCommon/ControllerInterface/Device.h
@@ -4,6 +4,7 @@
#pragma once
+#include <memory>
#include <mutex>
#include <string>
#include <vector>
diff --git a/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp b/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
index 7c916d108d..6e9b8b77ab 100644
--- a/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
@@ -6,6 +6,7 @@
#include <cassert>
#include <iostream>
#include <map>
+#include <memory>
#include <string>
#include <vector>
diff --git a/Source/Core/InputCommon/ControllerInterface/ExpressionParser.h b/Source/Core/InputCommon/ControllerInterface/ExpressionParser.h
index 80904634e4..992ca65f03 100644
--- a/Source/Core/InputCommon/ControllerInterface/ExpressionParser.h
+++ b/Source/Core/InputCommon/ControllerInterface/ExpressionParser.h
@@ -4,6 +4,7 @@
#pragma once
+#include <memory>
#include <string>
#include "InputCommon/ControllerInterface/Device.h"