Tests: Fix Plugin test include order
Fix the order accidentally broken by commit e1c77472
(Format include
directive blocks and ordering with clang-format, 2016-04-29). Include
the KWSys header first in its own block so that it is not moved by tools
that re-order includes. It must be included first to define large file
support macros consistently.
This commit is contained in:
parent
e1c7747253
commit
a20d7d4821
|
@ -1,9 +1,10 @@
|
||||||
|
#include <kwsys/DynamicLoader.hxx>
|
||||||
|
|
||||||
#include <example.h>
|
#include <example.h>
|
||||||
|
|
||||||
#include <example_exe.h>
|
#include <example_exe.h>
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <kwsys/DynamicLoader.hxx>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
Loading…
Reference in New Issue