summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface
diff options
context:
space:
mode:
authorChristian Widmer <shadow@umbrox.de>2016-06-26 05:34:09 +0200
committerChristian Widmer <shadow@umbrox.de>2016-06-26 05:42:29 +0200
commitbe922730b3cc5d2d2bd8419f02ddb820113d0ee8 (patch)
tree6657b4e2e7d5ba5a07d27d328414c9ea26865733 /Source/Core/InputCommon/ControllerInterface
parent3a2616714845781deea087c8cfdb965adc04b447 (diff)
ControllerInterface: Include memory to fix building without pch
All affected files use shared_ptr but do not include memory which breaks building without precompiled headers.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface')
-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 e47b04de99..ab5119d024 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>
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"