mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-28 20:04:10 +00: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.
9 lines
108 B
C++
9 lines
108 B
C++
#include <stdio.h>
|
|
|
|
#include "dir/header.h"
|
|
|
|
int main()
|
|
{
|
|
printf("HEADER_STRING: %s\n", HEADER_STRING);
|
|
}
|