variant
variant copied to clipboard
C++11/C++14 Variant
As reported in [Debian Bug #1017327](https://bugs.debian.org/1017327): > During a rebuild of all packages in sid, your package failed to build > on amd64. > > ``` > Relevant part (hopefully):...
Compiling in Windows with Visual Studio has a well known problem that they have MIN and MAX macros that conflict with other functions in the standard library like `std::numeric_limits::max` and...
This line produces an undefined value warning when compiling in pre-C++17 mode with `-Wundef` turned on.
Good job! But I still have a question to use it in CMAKE project. Suppose I have project in the following structures ```txt - root - CMakeLists.txt - cmake -...
Trailing whitespace bugs me, what of it? :) All tests pass.
Hi, Thanks to you variant implementation! But i see, that there are issue in member ``` VARIANT_INLINE variant& operator=(variant const& other) { copy_assign(other); return *this; } ``` Now there are...
https://reviews.llvm.org/D28467
I'm attempting to set up clang-tidy to run on codebases using `variant`. I am consistently seeing most warnings coming from variant. So these need to be addressed here, at the...
It appears that some inadvertent changes have disabled the effect of the `VARIANT_INLINE` macro in debug builds on Windows and release builds on all other platforms, by commenting out the...
Quoting @artemp from https://github.com/mapbox/variant/pull/156#discussion_r127658875: > it'll be better to have a separate page listing all available methods while README only mentions basic building blocks