[clang] eaa3947 - [NFC] Remove unused type alias in OpenACC
via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 12 14:42:11 PDT 2024
Author: erichkeane
Date: 2024-04-12T14:42:06-07:00
New Revision: eaa3947106e50d6d837e6681fb55cf92c2bb0f9a
URL: https://github.com/llvm/llvm-project/commit/eaa3947106e50d6d837e6681fb55cf92c2bb0f9a
DIFF: https://github.com/llvm/llvm-project/commit/eaa3947106e50d6d837e6681fb55cf92c2bb0f9a.diff
LOG: [NFC] Remove unused type alias in OpenACC
Leftover from a previous commit, this ends up not being used, so remove
it.
Added:
Modified:
clang/include/clang/Parse/Parser.h
Removed:
################################################################################
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h
index db90d38c7dacf8..c719218731c35b 100644
--- a/clang/include/clang/Parse/Parser.h
+++ b/clang/include/clang/Parse/Parser.h
@@ -3611,9 +3611,6 @@ class Parser : public CodeCompletionHandler {
OpenACCClauseParseResult OpenACCCannotContinue();
OpenACCClauseParseResult OpenACCSuccess(OpenACCClause *Clause);
- using OpenACCConditionExprParseResult =
- std::pair<ExprResult, OpenACCParseCanContinue>;
-
/// Parses the OpenACC directive (the entire pragma) including the clause
/// list, but does not produce the main AST node.
OpenACCDirectiveParseInfo ParseOpenACCDirective();
More information about the cfe-commits
mailing list