diff options
| author | Pavel Labath <labath@google.com> | 2016-11-25 12:37:49 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2016-11-25 12:37:49 +0000 |
| commit | 59e391c0f8ae642dc747ae55566289c856e1cf26 (patch) | |
| tree | e3b873e354557c9eb97c3959c275109a598e671f | |
| parent | 2f159a5f93250706ad5bed6c2e8521ead4df749f (diff) | |
| download | bcm5719-llvm-59e391c0f8ae642dc747ae55566289c856e1cf26.tar.gz bcm5719-llvm-59e391c0f8ae642dc747ae55566289c856e1cf26.zip | |
Fix darwin build broken by r287920
I accidentally used the wrong brackets when including llvm headers.
llvm-svn: 287923
| -rw-r--r-- | lldb/include/lldb/Utility/Timeout.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/include/lldb/Utility/Timeout.h b/lldb/include/lldb/Utility/Timeout.h index e5e975e5388..6c6fd009acb 100644 --- a/lldb/include/lldb/Utility/Timeout.h +++ b/lldb/include/lldb/Utility/Timeout.h @@ -10,8 +10,7 @@ #ifndef liblldb_Timeout_h_ #define liblldb_Timeout_h_ -#include <llvm/ADT/Optional.h> - +#include "llvm/ADT/Optional.h" #include <chrono> namespace lldb_private { |

