From: Craig Topper Date: Sun, 14 Jul 2013 17:04:56 +0000 (+0000) Subject: Replace C++0x in a comment with C++11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=466877a29a6b7549b8b1bd5b59df58ee79cc5f46;p=clang Replace C++0x in a comment with C++11 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186287 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Basic/OperatorPrecedence.cpp b/lib/Basic/OperatorPrecedence.cpp index f9de231c5e..ade8d6d841 100644 --- a/lib/Basic/OperatorPrecedence.cpp +++ b/lib/Basic/OperatorPrecedence.cpp @@ -28,7 +28,7 @@ prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator, return prec::Unknown; case tok::greatergreater: - // C++0x [temp.names]p3: + // C++11 [temp.names]p3: // // [...] Similarly, the first non-nested >> is treated as two // consecutive but distinct > tokens, the first of which is