cdecl-plus icon indicating copy to clipboard operation
cdecl-plus copied to clipboard

Similar to cdecl.org, but with broader support of language features. Static web page which supports file protocol. Parsing and to-prose conversion happen in the front-end, resulting in instant feedbac...

Results 10 cdecl-plus issues
Sort by recently updated
recently updated
newest added

## cdecl+ Input ```cpp signed bool ``` ## Expected Prose > Fatal Error: Conflicting specifiers signed and bool ## Actual Prose or Error > signed bool ## Additional Context Here...

bug

`constexpr` exists since C23

```cpp register int ``` currently just outputs `register int`, which isn't very informative.

enhancement

jus a goofy ahh idea to change colors of bg with a simple rbg picker nothing fancy lol

enhancement

## cdecl+ Input ```cpp size_t size_t ``` ## Expected Prose > Error: redefinition of `size_t` as different kind of symbol ## Actual Prose or Error > Declare `size_t` as `size_t`...

bug

![unnamed](https://github.com/Eisenwave/cdecl-plus/assets/131000419/5b412e34-1070-4775-942d-18e8358d100a)

enhancement

## cdecl+ Input ```cpp int a(int[static 2+1]),b(int q,int[static q]),c(int[2+1]),d(int q,int[q]) ``` ## Expected Prose > Declare a as function(array[2+1] (size checked) of int) returning int > > Declare b as...

enhancement

## cdecl+ Input ```cpp _Atomic void ``` ## Expected Prose > atomic void ## Actual Prose or Error > Fatal Error: Conflicting specifiers _Atomic and void ## Additional Context `_Atomic(void)`...

bug

## cdecl+ Input ```cpp int x[][] ``` ## Expected Prose > Can not create array of incomplete arrays ## Actual Prose or Error > Declare x as array of arrays...

bug

## cdecl+ Input ```cpp restrict int ``` ## Expected Prose > Error: restrict can only be applied to pointer to object types, or (possibly multidimensional) arrays of such types ##...

bug