"tests/git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "255ad1b35b23239de87be48e731b3e518c012de5"
Commit f7606b48 authored by Davis King's avatar Davis King
Browse files

Added code to avoid another useless vistual studio warning.

parent 10e890e1
...@@ -39,6 +39,10 @@ ...@@ -39,6 +39,10 @@
#pragma warning(disable : 4244) #pragma warning(disable : 4244)
#pragma warning(disable : 4305) #pragma warning(disable : 4305)
// Disable "warning C4180: qualifier applied to function type has no meaning; ignored".
// This warning happens often in generic code that works with functions and isn't useful.
#pragma warning(disable : 4180)
#endif #endif
#ifdef __BORLANDC__ #ifdef __BORLANDC__
......
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