This patch removes the comments grouping header includes. They were added after running IWYU over the LLDB codebase. However they add little value, are often outdates and burdensome to maintain. llvm-svn: 346626
11 lines
139 B
C
11 lines
139 B
C
#ifndef TEST_PDB_H
|
|
#define TEST_PDB_H
|
|
|
|
#include "test-pdb-nested.h"
|
|
|
|
int bar(int n);
|
|
|
|
inline int foo(int n) { return baz(n) + 1; }
|
|
|
|
#endif
|