The `httpserver.h` file is missing an `ifndef` around line 650 where it includes `common.h`. It should be: ``` #ifndef HTTPSERVER_IMPL #include "common.h" #endif ```