[Lldb-commits] [lldb] r217340 - DataFormatters: use include instead of import in C++

Saleem Abdulrasool compnerd at compnerd.org
Sun Sep 7 11:33:45 PDT 2014


Author: compnerd
Date: Sun Sep  7 13:33:44 2014
New Revision: 217340

URL: http://llvm.org/viewvc/llvm-project?rev=217340&view=rev
Log:
DataFormatters: use include instead of import in C++

'#import' is an Objective-C construct; avoid using it in C++.  NFC.

Addresses PR20867.

Patch by Kevin Avila!

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

Modified: lldb/trunk/source/DataFormatters/TypeValidator.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/DataFormatters/TypeValidator.cpp?rev=217340&r1=217339&r2=217340&view=diff
==============================================================================
--- lldb/trunk/source/DataFormatters/TypeValidator.cpp (original)
+++ lldb/trunk/source/DataFormatters/TypeValidator.cpp Sun Sep  7 13:33:44 2014
@@ -15,7 +15,7 @@
 
 // Project includes
 #include "lldb/DataFormatters/TypeValidator.h"
-#import "lldb/Core/StreamString.h"
+#include "lldb/Core/StreamString.h"
 
 using namespace lldb;
 using namespace lldb_private;





More information about the lldb-commits mailing list