LB--

Results 116 comments of LB--

This might be the problem I am having - I am trying the greetings example from the Nimrod tutorial, and when I build & run from Aporia, I never see...

@dom96 Shouldn't it at least display the initial prompt, or has that not been flushed?

Well there is [P1073R0](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p1073r0.html) that we might have some day.

There is `consteval` in the C++20 standard now: https://en.cppreference.com/w/cpp/language/consteval

Just tested in Firefox 101.0.1 and I get the same behavior as you. Seems like only some kinds of links are converted while others are not.

Just saw this, and wanted to comment that a common mistake I see with filesystem abstractions (in my opinion) is using a single string to represent a file path. Google...

> and there isn't any real (browseable) concept of a directory tree? So the only real way to access a file is to know its ID beforehand? From what I...

Out of curiosity, is there some reason the assignment operator isn't using the copy and swap idiom? My understanding was that it was regarded as the better way to avoid...

@asmaloney The swap function isn't strictly necessary but yes, that is the general idea: re-use the code and exception guarantees of the copy constructor while also enabling compiler optimizations and...

> Why should I care about copies but at the same time pretend that `a = std::move(a)` never happens? If move assignment is always just swapping the member variables, then...