diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 | 
| commit | bfef399519ca9b8a4b4c6b563253bad7e0eeffe0 (patch) | |
| tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /lib/Driver/InputInfo.h | |
| parent | 6a0372513edbc473b538d2f724efac50405d6fef (diff) | |
Diffstat (limited to 'lib/Driver/InputInfo.h')
| -rw-r--r-- | lib/Driver/InputInfo.h | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/Driver/InputInfo.h b/lib/Driver/InputInfo.h index a243d322ee21..4eedd22a62da 100644 --- a/lib/Driver/InputInfo.h +++ b/lib/Driver/InputInfo.h @@ -10,8 +10,8 @@  #ifndef CLANG_LIB_DRIVER_INPUTINFO_H_  #define CLANG_LIB_DRIVER_INPUTINFO_H_ -#include "clang/Driver/Arg.h"  #include "clang/Driver/Types.h" +#include "llvm/Option/Arg.h"  #include <cassert>  #include <string> @@ -35,7 +35,7 @@ class InputInfo {    union {      const char *Filename; -    const Arg *InputArg; +    const llvm::opt::Arg *InputArg;    } Data;    Class Kind;    types::ID Type; @@ -50,8 +50,9 @@ public:      : Kind(Filename), Type(_Type), BaseInput(_BaseInput) {      Data.Filename = _Filename;    } -  InputInfo(const Arg *_InputArg, types::ID _Type, const char *_BaseInput) -    : Kind(InputArg), Type(_Type), BaseInput(_BaseInput) { +  InputInfo(const llvm::opt::Arg *_InputArg, types::ID _Type, +            const char *_BaseInput) +      : Kind(InputArg), Type(_Type), BaseInput(_BaseInput) {      Data.InputArg = _InputArg;    } @@ -65,7 +66,7 @@ public:      assert(isFilename() && "Invalid accessor.");      return Data.Filename;    } -  const Arg &getInputArg() const { +  const llvm::opt::Arg &getInputArg() const {      assert(isInputArg() && "Invalid accessor.");      return *Data.InputArg;    }  | 
