Skip to content
Snippets Groups Projects
Commit 1750c366 authored by Rene Brun's avatar Rene Brun
Browse files

From Axel,

Fix a problem with vsnprintf on Windows


git-svn-id: http://root.cern.ch/svn/root/trunk@15435 27541ba8-7e3a-0410-8455-c3a389f83636
parent 1d57a6da
No related merge requests found
/* @(#)root/base:$Name: $:$Id: RConfig.h,v 1.89 2006/05/31 15:52:04 rdm Exp $ */
/* @(#)root/base:$Name: $:$Id: RConfig.h,v 1.90 2006/06/14 18:09:38 pcanal Exp $ */
/*************************************************************************
* Copyright (C) 1995-2002, Rene Brun and Fons Rademakers. *
......@@ -408,7 +408,6 @@
# define NEED_STRING
# define NEED_STRCASECMP
# define NEED_SNPRINTF
# define DONTNEED_VSNPRINTF
# define ANSICPP
# define R__VECNEWDELETE /* supports overloading of new[] and delete[] */
# define R__PLACEMENTDELETE /* supports overloading placement delete */
......@@ -419,6 +418,9 @@
# if _MSC_VER >= 1310
# define R__SSTREAM /* has <sstream> iso <strstream> */
# endif
# if _MSC_VER >= 1400
# define DONTNEED_VSNPRINTF
# endif
# if _MSC_VER < 1310
# define R__NO_CLASS_TEMPLATE_SPECIALIZATION
# endif
......
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