Files
clang-p2996/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-nested.h
Jonas Devlieghere ceff6644bb Remove header grouping comments.
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
2018-11-11 23:17:06 +00:00

7 lines
101 B
C

#ifndef TEST_PDB_NESTED_H
#define TEST_PDB_NESTED_H
inline int baz(int n) { return n + 1; }
#endif