diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-02-09 03:57:02 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-02-09 03:57:02 +0000 |
commit | b9da55780eb66fb09e771dbc5ff01eec5c4d957b (patch) | |
tree | f361c04a7732fbe1385339d45f24e2585eb17559 /lib/Driver/Driver.cpp | |
parent | f8823e7ae00d2b0a9395b51b7bd53b505df72031 (diff) |
Correct comment Clang C++ use in production.
This was from way-back-when (r82583) when Clang's C++ support wasn't prime-time
yet. Production quality C++ was tested experimentally from r100119 and turned
on by default in r141063.
Patch by Justin Bogner.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150148 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r-- | lib/Driver/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index bc571b9ef1..10eec2e1ed 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -65,7 +65,7 @@ Driver::Driver(StringRef ClangExecutable, CCCUsePCH(true), SuppressMissingInputWarning(false) { if (IsProduction) { // In a "production" build, only use clang on architectures we expect to - // work, and don't use clang C++. + // work. // // During development its more convenient to always have the driver use // clang, but we don't want users to be confused when things don't work, or |