From eee5f1fdacb9492ed825c81939ddf79c3f21771e Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Wed, 9 Jun 2010 19:36:54 +0000 Subject: [PATCH] For header includes we are currently trying to adopt some aspects of the Google C++ coding guidelines where includes are done as: 1 - the header file for the current source file 2 - C includes 3 - C++ includes 4 - external project includes 5 - current project includes llvm-svn: 105748 --- lldb/source/Core/UUID.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lldb/source/Core/UUID.cpp b/lldb/source/Core/UUID.cpp index dbfff6a34894..5eab63d5050b 100644 --- a/lldb/source/Core/UUID.cpp +++ b/lldb/source/Core/UUID.cpp @@ -9,13 +9,14 @@ #include "lldb/Core/UUID.h" // C Includes +#include +#include +#include + // C++ Includes // Other libraries and framework includes // Project includes #include "lldb/Core/Stream.h" -#include -#include -#include using namespace lldb_private;