From 89f284bc238b4091482cbc4fa38bc5f7246b81e4 Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Wed, 27 Jul 2022 09:05:59 +0200 Subject: [PATCH] [pseudo] Remove dead header This was an earlier draft of Language.h that got committed accidentally --- .../pseudo/include/clang-pseudo/ParseLang.h | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 clang-tools-extra/pseudo/include/clang-pseudo/ParseLang.h diff --git a/clang-tools-extra/pseudo/include/clang-pseudo/ParseLang.h b/clang-tools-extra/pseudo/include/clang-pseudo/ParseLang.h deleted file mode 100644 index fdbc83c..0000000 --- a/clang-tools-extra/pseudo/include/clang-pseudo/ParseLang.h +++ /dev/null @@ -1,31 +0,0 @@ -//===--- ParseLang.h ------------------------------------------- -*- C++-*-===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -#ifndef CLANG_PSEUDO_PARSELANG_H -#define CLANG_PSEUDO_PARSELANG_H - -#include "clang-pseudo/grammar/Grammar.h" -#include "clang-pseudo/grammar/LRTable.h" - -namespace clang { -namespace pseudo { - -// Specify a language that can be parsed by the pseduoparser. -// Manifest generated from a bnf grammar file. -struct ParseLang { - Grammar G; - LRTable Table; - - // FIXME: add clang::LangOptions. - // FIXME: add default start symbols. -}; - -} // namespace pseudo -} // namespace clang - -#endif // CLANG_PSEUDO_PARSELANG_H -- 2.7.4