diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2009-01-02 20:26:30 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2009-01-02 20:26:30 +0000 |
commit | 630fcb86785f96501126e52009619b475403dc62 (patch) | |
tree | 17e4773e0aace5d6a54e11e83e7b8f5976bbb76d /include/llvm/Support/CommandLine.h | |
parent | ae285bf5a631e7dd24cce087eca78353ff231a9c (diff) |
* Alphabetized system headers per the style guide
* Minor spacing and comment cleanups
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61590 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/CommandLine.h')
-rw-r--r-- | include/llvm/Support/CommandLine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h index 2e1661286c..b7de038f50 100644 --- a/include/llvm/Support/CommandLine.h +++ b/include/llvm/Support/CommandLine.h @@ -24,11 +24,11 @@ #include "llvm/Support/DataTypes.h" #include "llvm/Support/Compiler.h" #include "llvm/ADT/SmallVector.h" +#include <cassert> +#include <cstdarg> #include <string> -#include <vector> #include <utility> -#include <cstdarg> -#include <cassert> +#include <vector> namespace llvm { |