fengyan
Results
2
issues of
fengyan
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
Thanks
1
Thanks for your code. I'm learning from it.