pragmatwice's recent timeline updates
pragmatwice

pragmatwice

V2EX member #342483, joined on 2018-08-18 21:59:34 +08:00
Per pragmatwice's settings, the topics list is hidden
Deals info, including closed deals, is not hidden
pragmatwice's recent replies
不能。
Jan 27, 2025
Replied to a topic by ggp1ot2 日本 请问大阪去京都的最好方案?有接送机
坐地铁 一小时到
Sep 29, 2023
Replied to a topic by aiamjay Linux 开发主力机 Linux 桌面版求推荐
archlinux 对新手最友好
我觉得至少一部分原因是你们真的缺乏就医的生活常识。在上海去门诊,最好提前在网上预约,一般医院公众号上都可以进行,借此也可以查看医院什么时候能够就诊,如果实在不行可以去急诊。此外医院的选择,是我的话会首选一些知名的三甲,比如仁济有些科室门诊在周六是可以挂号的。你去的医院我大多根本没听说过。
> 因自身欲望大,多点首付多点选择,在金钱和利益面前人性使然。
感觉对人性有误解,做人需要有良知。
Mar 20, 2022
Replied to a topic by ChaosesIb C++ 有关模板 + if constexpr + static_assert 的问题
GCC 在这里的行为是正确的,如果想达到预期的效果可以加入一个 dependent name 以延迟 static_assert 的 evaluate ,例如

```c++
template <typename T> constexpr const auto always_false = false;

template<typename T=void>
void f() {
if constexpr(false) {
static_assert(always_false<T>, "fail");
}
}

int main()
{
f<>();
}
```
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   4358 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 24ms · UTC 10:07 · PVG 18:07 · LAX 03:07 · JFK 06:07
♥ Do have faith in what you're doing.