mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-27 00:49:52 -06:00
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
15 lines
137 B
C++
15 lines
137 B
C++
|
|
#include "depB.h"
|
|
|
|
#include "depA.h"
|
|
#include "libgenex.h"
|
|
|
|
int DepB::foo()
|
|
{
|
|
DepA a;
|
|
|
|
LibGenex lg;
|
|
|
|
return a.foo() + lg.foo();
|
|
}
|