diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-04-27 23:29:43 +0200 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-04-29 10:56:58 -0400 |
commit | eda313b485a9252c176090a8c358127a2116551d (patch) | |
tree | 91ac34598b4f840bbce077f25a10e14e169e10d6 | |
parent | 7110b754fe8dc82c4e18c7de72e8eedcec4561da (diff) | |
download | cmake-eda313b485a9252c176090a8c358127a2116551d.tar.gz |
Tests: Stabilize include order in StringFileTest
This test generates a header file which is not self-contained.
Include it in a separate block of includes so that tools that
sort includes do not move it.
-rw-r--r-- | Tests/StringFileTest/StringFile.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/StringFileTest/StringFile.cxx b/Tests/StringFileTest/StringFile.cxx index 9eba6bff97..073e30c33f 100644 --- a/Tests/StringFileTest/StringFile.cxx +++ b/Tests/StringFileTest/StringFile.cxx @@ -1,5 +1,6 @@ #include <stdio.h> #include <string.h> + #include "OutputFile.h" int main(int, char*[]) |