Open mjmessina opened 1 month ago
Headers have a lot of shadowing of variables.
Would be nice if you cleaned up some of the shadowing. if you compile with -Wshadow you can see all the warnings. Our projects compile with warnings as errors. To get around it:
Headers have a lot of shadowing of variables.
Would be nice if you cleaned up some of the shadowing. if you compile with -Wshadow you can see all the warnings. Our projects compile with warnings as errors. To get around it:
pragma GCC diagnostic ignored "-Wshadow"
include "crow.h"
pragma GCC diagnostic pop