diff options
author | Greg Clayton <gclayton@apple.com> | 2010-06-09 19:36:54 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-06-09 19:36:54 +0000 |
commit | eee5f1fdacb9492ed825c81939ddf79c3f21771e (patch) | |
tree | 04bb817c76af739e4f2c6b9b83b9f6faf75d1b85 /lldb/source/Core/UUID.cpp | |
parent | c656d3e1112962532cb0f03127326594a1635bee (diff) | |
download | bcm5719-llvm-eee5f1fdacb9492ed825c81939ddf79c3f21771e.tar.gz bcm5719-llvm-eee5f1fdacb9492ed825c81939ddf79c3f21771e.zip |
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
Diffstat (limited to 'lldb/source/Core/UUID.cpp')
-rw-r--r-- | lldb/source/Core/UUID.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/source/Core/UUID.cpp b/lldb/source/Core/UUID.cpp index dbfff6a3489..5eab63d5050 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 <string.h> +#include <stdio.h> +#include <ctype.h> + // C++ Includes // Other libraries and framework includes // Project includes #include "lldb/Core/Stream.h" -#include <string.h> -#include <stdio.h> -#include <ctype.h> using namespace lldb_private; |