Iain Diamond
Iain Diamond
I've seen this exact same issue. In my case, I'd used go modules to pull down the dependencies. After much debugging I eventually discovered that the version of JWT middleware...
Please see PR #40
@wolf99, I managed to fix the errors and warnings in my code by manually updating the makefile to include the _-Weverything_ flag. Ideally, I think the makefile should be able...
Thanks for the info @wolf99, I'm running on macOS Big Sur 11.6.1, using VS Code 1.62.1. The compiler details are: ```bash Apple clang version 12.0.5 (clang-1205.0.22.9) Target: x86_64-apple-darwin20.6.0 Thread model:...
I setup my environment to use a ubuntu:18.04 docker imagine: ```docker FROM ubuntu:18.04 RUN apt-get update && apt-get -y --no-install-recommends install \ build-essential \ vim COPY . /usr/src/myapp WORKDIR /usr/src/myapp...
In my last comment I raised the possibility of having `make memcheck` become a default part of the testing process. Immediately after suggesting that, I worked on the Bob exercise;...