Jeff Bailey
Jeff Bailey
It would be very nice if it were possible to either specify the path to clangd manually or have this detect the snapshot versions, and invoke clangd-15
CMake 3.30 deprecates FetchContent_Populate as CMP0169. FetchContent_MakeAvailable is already used in tests/CMakeLists.txt so this should not cause any problems for people on older versions of CMake. Tested: Built and ran...
Add byte_array wrapper for explicit fixed-size character array serialization. This introduces glz::byte_array. Currently: char arr[4] = {0, 0, 1, 0}; std::string json; glz::write_json(arr, json); // Previously: json == "\"\"" (empty...
It appears that: ``` char arr[4] = {0, 0, 1, 0}; ``` Will currently serialise to "". I think (if I'm reading the JSON spec right) that it should serialise...
Hi! I wrote a small wrapper for tabulate for C++ Modules that I'd be happy to contribute upstream if you're interested: ```C++ module; #include export module tabulate; export namespace tabulate...
### Brief Issue Summary When working to patch a bug here, I created a Codespace to work on it. The Devcontainer config is not working because of this error: ```The...
### Brief Issue Summary When performing a CMake configure, cmake-tools incorrectly escapes semicolons. When setting up LLVM: ``` { "cmake.sourceDirectory": "${workspaceFolder}/runtimes", "cmake.configureSettings": { "LLVM_ENABLE_RUNTIMES" : "libc;compiler-rt", "LLVM_LIBC_FULL_BUILD" : true }...
The settings JSON key has an extra array marker in it that VSCode doesn't like. Also, modernise the settings and extensions pieces by nesting them under customizations/vscode. ## This change...