Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
34 lines
725 B
C
34 lines
725 B
C
|
|
#include "testLibIncludeRequired1.h"
|
|
#include "testLibIncludeRequired2.h"
|
|
#include "testLibIncludeRequired6.h"
|
|
#include "testLibIncludeRequired7.h"
|
|
|
|
#include "installIncludesTest.h"
|
|
#include "installIncludesTest2.h"
|
|
#include "installIncludesTest3.h"
|
|
#include "installIncludesTest4.h"
|
|
#include "installIncludesTest5.h"
|
|
#include "installIncludesTest6.h"
|
|
#include "installIncludesTest7.h"
|
|
#include "installIncludesTest8.h"
|
|
|
|
#ifndef testLibRequired_IFACE_DEFINE
|
|
#error Expected testLibRequired_IFACE_DEFINE
|
|
#endif
|
|
|
|
#ifdef BuildOnly_DEFINE
|
|
#error Unexpected BuildOnly_DEFINE
|
|
#endif
|
|
|
|
#ifndef InstallOnly_DEFINE
|
|
#error Expected InstallOnly_DEFINE
|
|
#endif
|
|
|
|
extern int testLibDepends(void);
|
|
|
|
int main()
|
|
{
|
|
return testLibDepends();
|
|
}
|