mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 19:30:13 -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
271 B
C
14 lines
271 B
C
|
|
#ifndef TESTSHAREDLIBREQUIREDUSER2_H
|
|
#define TESTSHAREDLIBREQUIREDUSER2_H
|
|
|
|
#include "testSharedLibRequired.h"
|
|
#include "testsharedlibrequireduser2_export.h"
|
|
|
|
struct TESTSHAREDLIBREQUIREDUSER2_EXPORT TestSharedLibRequiredUser2
|
|
{
|
|
TestSharedLibRequired foo();
|
|
};
|
|
|
|
#endif
|