mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-29 10:31:03 -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
207 B
C++
15 lines
207 B
C++
#include "hello.h"
|
|
|
|
#include <stdio.h>
|
|
int Hello::Data = 0;
|
|
void Hello::real()
|
|
{
|
|
return;
|
|
}
|
|
void hello()
|
|
{
|
|
printf("hello");
|
|
}
|
|
void Hello::operator delete[](void*){};
|
|
void Hello::operator delete(void*){};
|