diff options
author | Haibo Huang <hhb@google.com> | 2019-08-07 06:15:01 +0000 |
---|---|---|
committer | Haibo Huang <hhb@google.com> | 2019-08-07 06:15:01 +0000 |
commit | c6551bf0133303570a9ac1d625ca3ddd0051cf1c (patch) | |
tree | af78d43758d5cdaa759549f502c4cc86907f6d8d /lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp | |
parent | 02b8056cc1ace66ddc8c00c064838d11ab2f9742 (diff) | |
download | bcm5719-llvm-c6551bf0133303570a9ac1d625ca3ddd0051cf1c.tar.gz bcm5719-llvm-c6551bf0133303570a9ac1d625ca3ddd0051cf1c.zip |
Detect HAVE_SYS_TYPES_H in lldb
Summary:
After rL368069 I noticed that HAVE_SYS_TYPES_H is not defined in
Platform.h, or anywhere else in lldb. This change fixes that.
Reviewers: labath
Subscribers: mgorny, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D65822
llvm-svn: 368125
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp')
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp index 5eec224477f..564c62c6a2c 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp @@ -6,6 +6,8 @@ // //===----------------------------------------------------------------------===// +#include "lldb/Host/Config.h" + #include "ClangUtilityFunction.h" #include "ClangExpressionDeclMap.h" #include "ClangExpressionParser.h" |