-
Hi Andreas, thank you for the great tool.
Looks like
`std::tuple tpl(c...);`
gets transformed into something odd:
`std::tuple tpl = c... ;`
Shouldn't the code stay the same in this case?
…
-
The project uses cmake to build, there are various header file dependencies, using a single file will find a variety of files.
how to use cppinsights and cmake together
-
**Issue:**
The generated code for a lambda function that captures a variable by value does not use the captured variable in the lambda body.
**Example Code:**
```cpp
int main()
{
int z{5}…
glucu updated
4 months ago
-
Hi, I'm working on [vikunja](https://github.com/alpaka-group/vikunja), a platform-independent primitives library (e.g. `vikunja::transform`, `vikunja::reduce`) for different accelerators based on [alp…
-
The project uses cmake to build, there are various header file dependencies, using a single file will find a variety of files.
how to use cppinsights and cmake together
-
-
env: ubuntu 18.04
build cmd:
```
INSIGHT_DIR=$(pwd)/cppinsights
mkdir build
cd build
cmake -G Ninja -D=CMAKE_BUILD_TYPE=Release -DLLVM_EXTERNAL_PROJECTS=cppinsights -DLLVM_EXTERNAL_CPPINSIGHTS_S…
-
Hey Andreas, I am sorry that I report so many issues recently, but cppinsights is just a great tool for learning C++ and it seems I occasionally tend to dig into the slightly more odd edge cases of th…
-
Here is how you can regenerate the segmentation fault:
first set this flags:
```
C++ Standard:
C++ 2c
More Transformations:
Use libc++
Show coroutine transformation
Show C++ to C tra…
-
Issue example: https://cppinsights.io/s/8931a54c
Input:
```
/* ... better-enums library code ... */
#include
#include
BETTER_ENUM(Word, int, Hello, World)
int main()
{
#define ARR_S…