forked from OSchip/llvm-project
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:
parent
c656d3e111
commit
eee5f1fdac
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue