vinipsmaker / tufao

An asynchronous web framework for C++ built on top of Qt
http://vinipsmaker.github.io/tufao/
GNU Lesser General Public License v2.1
589 stars 179 forks source link

-Wall and -Wextra not appropriate for MSVC #75

Closed kazarmy closed 9 years ago

kazarmy commented 9 years ago

The MSVC compiler shouldn't see the -Wall and -Wextra flags. MSVC doesn't support the -Wextra flag, and this stops compilation. Unlike gcc, MSVC interprets the -Wall flag literally, swamping the user with a flood of "warnings" that are not really problems.

vinipsmaker commented 9 years ago

Thank you for the patch.