dpp icon indicating copy to clipboard operation
dpp copied to clipboard

Directly include C headers in D source code

Results 90 dpp issues
Sort by recently updated
recently updated
newest added

Some projects are difficult to build...

enhancement
usability
libclang

It should be possible to get clang to parse a little cpp file that instantiates type according to instructions and get it that way.

enhancement
C++

Including that it's doing right thing with blobs and alignment

enhancement
C++

obviously we don't have multiple inheritance in d. but most important thing is to get the layout right. currently we have: ```c++ class Currency: Convention, public relational_operators {} ``` translated...

enhancement
C++

`static inline` functions don't generate symbols, as such they have to be implemented in D to be usable. example: ``` #include void main() { wl_registry *registry = wl_display_get_registry(display); } ```...

enhancement

```c++ class A { bool operator_a() const; }; ```

bug
C++

The examples don't run on Travis right now because they fail - the older version of libclang there, even when installing the most recent one from apt, doesn't work the...

help wanted
continuous integration
good first issue

```c++ template struct Struct{}; template struct Struct { static constexpr auto value = 42; }; ```

bug
C++

```c++ template class T2 { enum { value = I }; }; ``` This static assert fails: ```d static assert(T2!2.value == 2); ``` The enum is set to 0 in...

bug
C++
libclang