Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cr-marcstevens/sha1collisiondetection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan Shumow <danshu@microsoft.com>2017-03-31 23:10:39 +0300
committerDan Shumow <danshu@microsoft.com>2017-03-31 23:10:39 +0300
commit40642d28d044ba02b1f56f5638c86da41f7ee92b (patch)
tree56a926f2ce571db49840dbabf51cf68866808abc /src
parent2ca590773a1ea66bf5f2f01e1dac6846632e8e60 (diff)
Turns up warning levels for visual studio build.
Diffstat (limited to 'src')
-rw-r--r--src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index cdf0fa5..ce3df75 100644
--- a/src/main.c
+++ b/src/main.c
@@ -104,3 +104,7 @@ int main(int argc, char** argv)
}
return 0;
}
+
+#ifdef _MSC_VER
+#pragma warning(disable : 4710 ) /* 4710 -- compiler complains about printf,sprintf not being inlined. */
+#endif