This patch adds '-Wno-suggest-override' flag to clang-cl.
Currently this flag gets added in the else() block for compilers
other than MSVC. Since CMake evaluates if(MSVC) true for clang-cl
this flag does not get added.
Let me know if it would be better if we move the
if(CXX_SUPPORTS_SUGGEST_OVERRIDE_FLAG) block outside if(MSVC).