mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 06:09:14 -05:00
ed98209ddc
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.
11 lines
103 B
C
11 lines
103 B
C
|
|
#include "depA.h"
|
|
#include "depc_export.h"
|
|
|
|
struct DEPC_EXPORT DepC
|
|
{
|
|
int foo();
|
|
|
|
DepA getA();
|
|
};
|