mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -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.
14 lines
129 B
C++
14 lines
129 B
C++
#include "a.h"
|
|
|
|
#include "b.h"
|
|
|
|
bool A::recursed = false;
|
|
|
|
A::A()
|
|
{
|
|
if (!A::recursed) {
|
|
A::recursed = true;
|
|
B b;
|
|
}
|
|
}
|