Guillaume Papin
Guillaume Papin
I debugged it a bit, it appears that melpa rewrite the irony version header from: ```el ;; Version: 1.6.1 ``` To: ```el ;; Package-Version: 20231018.1915 ;; Package-Revision: 40e0ce19eb85 ``` This...
FWIW, it's not the first issue about libatomic, see also https://github.com/capnproto/capnproto/issues/1448
You can force eager evaluation of the promise like this: ```diff -promise = request.send(); // Send a request to RPC server +promise = request.send().eagerlyEvaluate(nullptr); // Send a request to RPC...