[clang] [clang]: immediate address of build issue (PR #180236)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 6 09:22:08 PST 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: Nhat Nguyen (changkhothuychung)
<details>
<summary>Changes</summary>
Fixed the build issue happen [here](https://github.com/llvm/llvm-project/pull/164692)
---
Full diff: https://github.com/llvm/llvm-project/pull/180236.diff
1 Files Affected:
- (modified) clang/lib/Sema/TreeTransform.h (+1)
``````````diff
diff --git a/clang/lib/Sema/TreeTransform.h b/clang/lib/Sema/TreeTransform.h
index 9e0980af6c06b..ed0010dff2ee5 100644
--- a/clang/lib/Sema/TreeTransform.h
+++ b/clang/lib/Sema/TreeTransform.h
@@ -13058,6 +13058,7 @@ template <typename Derived>
ExprResult TreeTransform<Derived>::TransformCXXReflectExpr(CXXReflectExpr *E) {
// TODO(reflection): Implement its transform
assert(false && "not implemented yet");
+ return ExprError();
}
template<typename Derived>
``````````
</details>
https://github.com/llvm/llvm-project/pull/180236
More information about the cfe-commits
mailing list