Giacomo Ellero

Results 14 comments of Giacomo Ellero

I've fixed the `[[maybe_unused]]` issue (my fault, I've always used the most recent version of C++) and now I have some questions: 1. Should we add `-std=c99` to CFLAGS to...

> Does the "globally" mean suppressing the warning in the makefile or could it be done within the source? (I want the pocketlang source to be build cleanly (without any...

On gcc everything is fine. In the next days I'll also try with clang and MSVC.

Clang also reported some other warnings: 1. [Here](https://github.com/ThakeeNathees/pocketlang/blob/master/src/pk_core.c#L352) it reported an implicit conversion from `long` to `double`. If this is correct an explicit cast would be enough; 2. [This function](https://github.com/ThakeeNathees/pocketlang/blob/master/src/pk_vm.c#L445)...

I've tryed adding `/Wall` in MSVC and it gives a lot of warnings and I mean A LOT. Compilation output ```sh pk_compiler.c C:\Users\Billy\code\pocketlang\src\pk_var.h(238): warning C4820: 'Object': '3' bytes padding added...

I had the same issue. Then I tried disabling all my other mods one by one and it turned out that it was because of malilib and/or other masa's mods....

> Seems to be a mixin conflict with tweakeroo. > This is very likely a seperate issue Oh, sorry, my bad. Should I open a new issue here or in...

I did some research and some googling: turns out that the error I'm getting, `NS_ERROR_INTERCEPTION_FAILED`, according to [this reddit post](https://www.reddit.com/r/firefox/comments/tb9kv5/what_is_ns_error_interception_failed/), means > Generic error for non-specific failures during service worker...

Hi, it's been a loooong time since I've wrote any code for this project, I don't support it anymore and I should probably archive it. Anyways, if I remember correctly,...

The only thing i notice is that in the token there are some `\`. Try manually removing those. The temporary token it's just a [JWT](https://jwt.io/), you should also be able...