"vscode:/vscode.git/clone" did not exist on "854b28f199030d73dc3c879bddb79762a364d9f3"
Commit b5c87fbc authored by Gennadiy Civil's avatar Gennadiy Civil
Browse files

Deal with MCVS warnings

parent 427b6a29
......@@ -48,6 +48,12 @@
namespace testing {
namespace internal {
// Silence C4100 (unreferenced formal
// parameter) for MSVC
#ifdef _MSC_VER
# pragma warning(disable:4100)
#endif
// Joins a vector of strings as if they are fields of a tuple; returns
// the joined string.
GTEST_API_ std::string JoinAsTuple(const Strings& fields);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment