Fix darwin build broken by r287920
authorPavel Labath <labath@google.com>
Fri, 25 Nov 2016 12:37:49 +0000 (12:37 +0000)
committerPavel Labath <labath@google.com>
Fri, 25 Nov 2016 12:37:49 +0000 (12:37 +0000)
I accidentally used the wrong brackets when including llvm headers.

llvm-svn: 287923

lldb/include/lldb/Utility/Timeout.h

index e5e975e..6c6fd00 100644 (file)
@@ -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 {