Propagate last changes in the value printer, too.

git-svn-id: http://root.cern.ch/svn/root/trunk@48326 27541ba8-7e3a-0410-8455-c3a389f83636
This commit is contained in:
Vassil Vassilev 2013-01-18 10:34:51 +00:00
parent bac91929b7
commit 2900ef3824

View File

@ -21,7 +21,23 @@
#include <string>
#include <cstdio>
#include <unistd.h>
// Fragment copied from LLVM's raw_ostream.cpp
#if defined(_MSC_VER)
#ifndef STDIN_FILENO
# define STDIN_FILENO 0
#endif
#ifndef STDOUT_FILENO
# define STDOUT_FILENO 1
#endif
#ifndef STDERR_FILENO
# define STDERR_FILENO 2
#endif
#else
//#if defined(HAVE_UNISTD_H)
# include <unistd.h>
//#endif
#endif
using namespace cling;