Line 732 ->: ```cpp catch(const std::exception &e){ return false; } ``` the parameter `e` is not used, thus MSVC may give a warning. solution: ```cpp catch(const std::exception &e){ std::cerr << "exception caught: " << e.what() << '\n'; return false; } ```