-
```
When using a C macro with stringized variables, all the code after the # will
appear greyed-out as a preprocessor directive:
#define MIN(a, b) (a < b ? a
: b)
#define LARGEST_INT_TYPE unsign…
-
```
When using a C macro with stringized variables, all the code after the # will
appear greyed-out as a preprocessor directive:
#define MIN(a, b) (a < b ? a
: b)
#define LARGEST_INT_TYPE unsign…
-
# Problem
We define datatypes in terms of ISO languages. It would solve a lot of problems, e.g. #65, if we could define language-agnostic types aligned with the IEEE754 floating-point standard. U…
-
As we work on the unified paper P3045, we should double check to make sure we don't lose feedback from previous versions.
## Numerics paper
From this PR (#60), we have these outstanding pieces o…
-
We should validate that a given collection/index given as input/output is valid, e.g., the directory exists and the files are there. If not, fail with a message.
The reason is that sometimes you ca…
-
| | |
| --- | --- |
| Bugzilla Link | [33655](https://llvm.org/bz33655) |
| Version | trunk |
| OS | Windows NT |
| CC | @K-ballo,@ldionne,@mclow,@zygoloid,@timsong-cpp |
## Extended Description
I…
-
_Перенос предложения:_ голоса +22, -0
_Автор идеи:_ **dreverser**
Из того что я смотрел предлагаемый в стандарт Networking TS это практически тот же самый asio из boost'a
Вот только в бусте он …
-
_(Took a while to get this posted, but here is sort of my line of thinking.)_
References cannot be default constructed or changed to point to a different address. So when assignment to one reference…
-
| | |
| --- | --- |
| Bugzilla Link | [11036](https://llvm.org/bz11036) |
| Version | unspecified |
| OS | Linux |
| CC | @berolinux,@efriedma-quic |
## Extended Description
With the follo…
-
Recently, we started using `boost::outcome::result` in parts of the Scylla code (especially dealing with timeouts), as an alternative to std::exception_ptr. The reason was purely performance: although…