Fix incorrect header order introduced in rL284830
authorTamas Berghammer <tberghammer@google.com>
Fri, 21 Oct 2016 15:05:03 +0000 (15:05 +0000)
committerTamas Berghammer <tberghammer@google.com>
Fri, 21 Oct 2016 15:05:03 +0000 (15:05 +0000)
llvm-svn: 284831

lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp

index 42f006a..d5fd386 100644 (file)
@@ -9,14 +9,14 @@
 
 #include "LibStdcpp.h"
 
-#include <memory>
-#include <vector>
-
 #include "lldb/Core/ConstString.h"
 #include "lldb/Core/ValueObject.h"
 #include "lldb/DataFormatters/FormattersHelpers.h"
 #include "lldb/DataFormatters/TypeSynthetic.h"
 
+#include <memory>
+#include <vector>
+
 using namespace lldb;
 using namespace lldb_private;
 using namespace lldb_private::formatters;
index 03acc3b..16115f1 100644 (file)
@@ -9,14 +9,14 @@
 
 #include "LibStdcpp.h"
 
-#include <memory>
-#include <vector>
-
 #include "lldb/Core/ConstString.h"
 #include "lldb/Core/ValueObject.h"
 #include "lldb/DataFormatters/FormattersHelpers.h"
 #include "lldb/DataFormatters/TypeSynthetic.h"
 
+#include <memory>
+#include <vector>
+
 using namespace lldb;
 using namespace lldb_private;
 using namespace lldb_private::formatters;