mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 04:10:05 -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
244 B
C
15 lines
244 B
C
|
|
#ifndef TESTSHAREDLIBDEPENDS_H
|
|
#define TESTSHAREDLIBDEPENDS_H
|
|
|
|
#include "renamed.h"
|
|
#include "testSharedLibRequired.h"
|
|
#include "testsharedlibdepends_export.h"
|
|
|
|
struct TESTSHAREDLIBDEPENDS_EXPORT TestSharedLibDepends
|
|
{
|
|
int foo();
|
|
};
|
|
|
|
#endif
|