[clang] [Serialization] Load Specializations Lazily (1/2) (PR #76774)
Chuanqi Xu via cfe-commits
cfe-commits at lists.llvm.org
Sun Jan 7 23:47:43 PST 2024
================
@@ -1249,3 +1249,5 @@ void ODRHash::AddQualType(QualType T) {
void ODRHash::AddBoolean(bool Value) {
Bools.push_back(Value);
}
+
+void ODRHash::AddInteger(unsigned Value) { ID.AddInteger(Value); }
----------------
ChuanqiXu9 wrote:
I had this https://github.com/llvm/llvm-project/commit/9b808a4beb8e6c8255b412fdd6f5a3e20cbcf270#diff-e88c8434346144fdf335c14c17a112759af7a4e81957efcaca635a08b9f13a29R110-R116.
Do you mean I need to put that into a namespace?
I tried to create alias arguments for template template arguments. But the tests can't pass before the current patch.
https://github.com/llvm/llvm-project/pull/76774
More information about the cfe-commits
mailing list