mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 13:35:38 +08:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user