diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:24:38 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:24:38 +0000 |
commit | 3cbd71c03bac065fbfc5928fe2ca9d5484c2c436 (patch) | |
tree | 07e557b28e1a03778f07ebfc25ac9cfb0337cdfe /clang-tools-extra/unittests | |
parent | 575bc3ba624639d164f889fc8da6acd7c52ffc31 (diff) | |
download | bcm5719-llvm-3cbd71c03bac065fbfc5928fe2ca9d5484c2c436.tar.gz bcm5719-llvm-3cbd71c03bac065fbfc5928fe2ca9d5484c2c436.zip |
[cleanup] Re-sort the #include lines with llvm/utils/sort_includes.py
No functionality changed, this is just a mechanical cleanup to keep the
order of #include lines consistent across the project.
llvm-svn: 225976
Diffstat (limited to 'clang-tools-extra/unittests')
-rw-r--r-- | clang-tools-extra/unittests/clang-rename/USRLocFindingTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/unittests/clang-rename/USRLocFindingTest.cpp b/clang-tools-extra/unittests/clang-rename/USRLocFindingTest.cpp index 4f497c6c928..6e38d59ad72 100644 --- a/clang-tools-extra/unittests/clang-rename/USRLocFindingTest.cpp +++ b/clang-tools-extra/unittests/clang-rename/USRLocFindingTest.cpp @@ -1,9 +1,9 @@ #include "USRFindingAction.h" -#include "gtest/gtest.h" #include "clang/Tooling/Tooling.h" -#include <stdio.h> -#include <set> +#include "gtest/gtest.h" #include <map> +#include <set> +#include <stdio.h> #include <vector> namespace clang { |