Skip to main content
underscore_d's user avatar
underscore_d's user avatar
underscore_d's user avatar
underscore_d
  • Member for 10 years, 10 months
  • Last seen this week
29 votes
4 answers
1k views

Does accessing a declared non-volatile object through a volatile reference/pointer confer volatile rules upon said accesses?

28 votes
2 answers
4k views

union 'punning' structs w/ "common initial sequence": Why does C (99+), but not C++, stipulate a 'visible declaration of the union type'?

9 votes
1 answer
2k views

Why is a volatile local variable optimised differently from a volatile argument, and why does the optimiser generate a no-op loop from the latter?

5 votes
2 answers
343 views

Is it possible to make `=` prefer assignment-from-conversion over (deleted) copy-assignment?

3 votes
3 answers
3k views

SQL Server : ISNULL(compound NULL condition, 'a string') returns only the 1st character, under certain circumstance(s)

2 votes
1 answer
329 views

C++23 std::views::zip errors when given a view of references to abstract base class

1 vote
1 answer
689 views

GCC allows 1-line declaring of multiple pointers, but not non-pointers, with different const qualifiers

0 votes
1 answer
328 views

compile error when trying to use pointer-to-member function as projection to ranges::find()

-4 votes
1 answer
166 views

Why are the *_leastN_t and *_fastN_t types required, not optional?