[Lldb-commits] [lldb] 8f95a82 - [lldb] Fix Windows bot.

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 17 09:07:06 PST 2020


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;


        


More information about the lldb-commits mailing list