Personal channel of @lancern

Topics: programming, hacking, memes, life, and more. Forward anything as you wish.

Join the discussion group for more fun.

Discord: https://discord.gg/RwUx9et7
UBfuzz: Finding Bugs in Sanitizer Implementations:
https://arxiv.org/abs/2401.04538v1

“介绍了一个新的测试框架UBfuzz,用于验证编译器中的sanitizer实现,发现了sanitizer中的31个漏洞,揭示了sanitizer存在的严重虚假负问题。”
今日夜宵:火鸡面
时隔一年多重新开始用 GitHub Copilot,主要用于生成测试,真舒服
今日C++无用冷知识两则:

1. 以下两种写法是合法且等价的:
typedef int i32;
int typedef i32;


2. 下面的模板函数定义是合法的;
template <typename ...T>
void test(T......) {}


它等价于:
template <typename ...T>
void test(T..., ...) {}
Back to Top