summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ExpressionParser.h
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/ExpressionParser.h
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/ExpressionParser.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ExpressionParser.h1
1 files changed, 1 insertions, 0 deletions
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"