Adam Wulkiewicz
Adam Wulkiewicz
Yes, you should be able to do this. You can put it in your workspace or clone this repo and put it in https://github.com/awulkiew/graphical-debugging-vscode/tree/master/resources if you're planning to run the...
@latenitecoding Have you tried it?
I tried it. After adding json to my workspace I was able to visualize array. ``` { "name": "graphicaldebugging", "language": "java", "types": [ { "type": "[a-zA-Z_][\\w:\\s]*\\[\\]", "kind": "container", "array": {...
I'll look at it. Any idea what caused it? https://github.com/boostorg/geometry/pull/1391, https://github.com/boostorg/geometry/pull/1392 or something else?
Where does it fail? It seems to be fine: https://www.boost.org/development/tests/develop/developer/geometry-index.html It's not tested on CircleCI. Are you running it locally or am I missing something?
Sure, no problem, thanks for the details. I'd like to try to reproduce it. What's the OS and compiler?
I'd probably also need cmake options.
C-arrays are matched with this regexp: https://github.com/awulkiew/graphical-debugging-vscode/blob/master/resources/stl.json#L6 Maybe it's incorrect or the type reported by your debugger is something wierd? Does `short` and `unsigned short` work?
Btw, what debugger do you use? `cortex-debug`? I just checked with `cppvsdbg` and it works ok. `uint16_t` is `unsigned short` for me, what is it for you?