[clang] [clang]: support std::meta::info for primitive types (PR #190356)
Timm Baeder via cfe-commits
cfe-commits at lists.llvm.org
Sat Apr 4 06:47:52 PDT 2026
================
@@ -0,0 +1,25 @@
+//===--- Reflection.h - Kind of reflection operands ---*- 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
+//
+//===----------------------------------------------------------------------===//
+//
+// This file declares the kinds of reflection operands.
+//
+//===----------------------------------------------------------------------===//
+
+
+#ifndef LLVM_CLANG_AST_REFLECTION_H
+#define LLVM_CLANG_AST_REFLECTION_H
+namespace clang {
+
+// TODO(Reflection): Add support for Template, Namespace and DeclRefExpr.
+enum class ReflectionKind {
+ Type
+};
+
+}
----------------
tbaederr wrote:
```suggestion
} // namespace clang
```
https://github.com/llvm/llvm-project/pull/190356
More information about the cfe-commits
mailing list