diff options
author | Brad King <brad.king@kitware.com> | 2016-05-03 13:20:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-05-03 14:08:41 (GMT) |
commit | a20d7d482113a5eba59bd7a51857c9403e75d7fd (patch) | |
tree | 751793bddbff0c3129cdb0076c8d9bc66194a156 /Tests/Plugin | |
parent | e1c7747253ac71a5215dd32a910b62a1fd8c561a (diff) | |
download | CMake-a20d7d482113a5eba59bd7a51857c9403e75d7fd.zip CMake-a20d7d482113a5eba59bd7a51857c9403e75d7fd.tar.gz CMake-a20d7d482113a5eba59bd7a51857c9403e75d7fd.tar.bz2 |
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.
Diffstat (limited to 'Tests/Plugin')
-rw-r--r-- | Tests/Plugin/src/example_exe.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/Plugin/src/example_exe.cxx b/Tests/Plugin/src/example_exe.cxx index 393bb68..fd23e8f 100644 --- a/Tests/Plugin/src/example_exe.cxx +++ b/Tests/Plugin/src/example_exe.cxx @@ -1,9 +1,10 @@ +#include <kwsys/DynamicLoader.hxx> + #include <example.h> #include <example_exe.h> #include <iostream> -#include <kwsys/DynamicLoader.hxx> #include <string> #include <stdio.h> |