Skip to content
Snippets Groups Projects
Commit 493b29b3 authored by Robert Maynard's avatar Robert Maynard
Browse files

Remove snprintf MSVC workaround as VTK requires VS2015

parent 43191bee
No related branches found
No related tags found
No related merge requests found
......@@ -147,12 +147,4 @@
# define VTK_HAS_STD_UNIQUE_PTR
#endif
/* MS Visual Studio 2015 finally supports C99/C++11's snprintf but
* for older versions, use _snprintf instead. Annoyingly, its semantics
* are slightly different, but still better than using sprintf.
*/
#if defined(_MSC_VER) && (_MSC_VER < 1900)
# define snprintf _snprintf
#endif
#endif // vtkConfigure_h
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment