Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85810 - trunk/boost/log/detail
From: andrey.semashev_at_[hidden]
Date: 2013-09-21 12:45:07


Author: andysem
Date: 2013-09-21 12:45:07 EDT (Sat, 21 Sep 2013)
New Revision: 85810
URL: http://svn.boost.org/trac/boost/changeset/85810

Log:
Corrected included headers to fix compilation problems on Solaris.

Text files modified:
   trunk/boost/log/detail/snprintf.hpp | 5 +++--
   1 files changed, 3 insertions(+), 2 deletions(-)

Modified: trunk/boost/log/detail/snprintf.hpp
==============================================================================
--- trunk/boost/log/detail/snprintf.hpp Sat Sep 21 05:21:30 2013 (r85809)
+++ trunk/boost/log/detail/snprintf.hpp 2013-09-21 12:45:07 EDT (Sat, 21 Sep 2013) (r85810)
@@ -16,11 +16,12 @@
 #ifndef BOOST_LOG_DETAIL_SNPRINTF_HPP_INCLUDED_
 #define BOOST_LOG_DETAIL_SNPRINTF_HPP_INCLUDED_
 
-#include <cstdio>
+#include <stdio.h>
+#include <cstddef>
 #include <cstdarg>
 #include <boost/log/detail/config.hpp>
 #ifdef BOOST_LOG_USE_WCHAR_T
-#include <cwchar>
+#include <wchar.h>
 #endif // BOOST_LOG_USE_WCHAR_T
 #include <boost/log/detail/header.hpp>
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk