aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Arg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Driver/Arg.cpp')
-rw-r--r--lib/Driver/Arg.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Driver/Arg.cpp b/lib/Driver/Arg.cpp
index 6cff93e64a..6a860b6200 100644
--- a/lib/Driver/Arg.cpp
+++ b/lib/Driver/Arg.cpp
@@ -17,7 +17,8 @@ using namespace clang::driver;
Arg::Arg(ArgClass _Kind, const Option *_Opt, unsigned _Index)
: Kind(_Kind),
Opt(_Opt),
- Index(_Index)
+ Index(_Index),
+ Claimed(false)
{
}