[lldb] Fix Windows bot.
authorJonas Devlieghere <jonas@devlieghere.com>
Mon, 17 Feb 2020 17:06:18 +0000 (09:06 -0800)
committerJonas Devlieghere <jonas@devlieghere.com>
Mon, 17 Feb 2020 17:06:59 +0000 (09:06 -0800)
Should fix error C2039: 'toupper': is not a member of 'std'.

lldb/source/Target/ABI.cpp

index 027ea05..47a46f4 100644 (file)
@@ -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;