Ahmet Sait

Results 9 issues of Ahmet Sait

``` --generate-anonymous-enum=true [default: false] ``` It seems like a valuable enchanment. Instead of generating a named enum: ```D enum hb_memory_mode_t { HB_MEMORY_MODE_DUPLICATE = 0, HB_MEMORY_MODE_READONLY = 1, HB_MEMORY_MODE_WRITABLE = 2,...

enhancement

DStep skips enum name for alias declarations when they are defined as typedefs: ```C typedef enum { /*< flags >*/ HB_GLYPH_FLAG_UNSAFE_TO_BREAK = 0x00000001, HB_GLYPH_FLAG_DEFINED = 0x00000001 /* OR of all...

bug

This PR tries to implement [`-mangle-prefix=:`](https://gist.github.com/ahmetsait/10925a246b0d412a698e927658f3f363#milestone-overview) Current status: ```d // test.d module test; __gshared _MyClass_ _c_ = new _MyClass_; __gshared _MyStruct_ _s_; float _pi_ = 3.14f; int _foo_(int x, _MyClass_...

Needs Work
Needs Rebase
SAOC

MetaCall currently has no mechanism to propagate errors to the caller, aside from a simple logging to notify the user. Exceptions are often part of the API, meaning that it...

enhancement
c/c++

### The problem Inspecting the environment variables of a git process shows that its PATH variable has these additional paths prepended: ``` C:\Program Files\Git\mingw64\libexec\git-core C:\Program Files\Git\mingw64\bin C:\Program Files\Git\usr\bin ``` GitHub...

I have the following `.vscode/setting.json` (notice: `"archType": "$current"`) ```json { "version": "2.0.0", "tasks": [ { "type": "dub", "run": false, "cwd": "${workspaceFolder}", "compiler": "$current", "archType": "$current", "buildType": "$current", "configuration": "$current", "problemMatcher":...

bug

My `dub.json` contains `"targetPath": "bin/$BUILD_TYPE-$PLATFORM-$ARCH"`. Trying to simply launch debugger in VS Code shows the following error: ![2023-07-06 08-57-13 Visual Studio Code](https://github.com/Pure-D/code-d/assets/8372246/debe0074-fbb4-4e02-9599-2778f3be6219) `launch.json` contents: ```json { "version": "0.2.0", "configurations": [...

bug

Now that mobile friendly index is in place, only thing missing for scrolling the forum in bed is dark mode. I would try myself but it doesn't seem like I...