Author: Jonas Devlieghere
Date: 2020-02-17T09:06:59-08:00
New Revision: 8f95a82bc04091eda40f1cd1ca6c44d14c53dd4c

URL: 
https://github.com/llvm/llvm-project/commit/8f95a82bc04091eda40f1cd1ca6c44d14c53dd4c
DIFF: 
https://github.com/llvm/llvm-project/commit/8f95a82bc04091eda40f1cd1ca6c44d14c53dd4c.diff

LOG: [lldb] Fix Windows bot.

Should fix error C2039: 'toupper': is not a member of 'std'.

Added: 
    

Modified: 
    lldb/source/Target/ABI.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Target/ABI.cpp b/lldb/source/Target/ABI.cpp
index 027ea057751f..47a46f401e61 100644
--- a/lldb/source/Target/ABI.cpp
+++ b/lldb/source/Target/ABI.cpp
@@ -17,6 +17,7 @@
 #include "lldb/Target/Thread.h"
 #include "lldb/Utility/Log.h"
 #include "llvm/Support/TargetRegistry.h"
+#include <cctype>
 
 using namespace lldb;
 using namespace lldb_private;


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to