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
This commit is contained in:
Greg Clayton 2010-06-09 19:36:54 +00:00
parent c656d3e111
commit eee5f1fdac
1 changed files with 4 additions and 3 deletions

View File

@ -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;