[Lldb-commits] [lldb] r220921 - Remove #include <codecvt>. It isn't supported on all compilers.

Zachary Turner zturner at google.com
Thu Oct 30 12:42:08 PDT 2014


Author: zturner
Date: Thu Oct 30 14:42:08 2014
New Revision: 220921

URL: http://llvm.org/viewvc/llvm-project?rev=220921&view=rev
Log:
Remove #include <codecvt>.  It isn't supported on all compilers.

Also it wasn't being used anyway, so it appears to be a dead include.

Modified:
    lldb/trunk/source/DataFormatters/StringPrinter.cpp

Modified: lldb/trunk/source/DataFormatters/StringPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/DataFormatters/StringPrinter.cpp?rev=220921&r1=220920&r2=220921&view=diff
==============================================================================
--- lldb/trunk/source/DataFormatters/StringPrinter.cpp (original)
+++ lldb/trunk/source/DataFormatters/StringPrinter.cpp Thu Oct 30 14:42:08 2014
@@ -16,7 +16,6 @@
 
 #include "llvm/Support/ConvertUTF.h"
 
-#include <codecvt>
 #include <ctype.h>
 #include <functional>
 #include <locale>





More information about the lldb-commits mailing list