boost: Remove log from Makefile and version check in flow.h

This commit is contained in:
Vishesh Yadav 2019-03-05 17:08:39 -08:00 committed by Alex Miller
parent f699f85e30
commit fd34626009
2 changed files with 0 additions and 7 deletions

View File

@ -69,7 +69,6 @@ else
$(error Not prepared to compile on platform $(PLATFORM))
endif
BOOSTDIR ?= ${BOOST_BASEDIR}/${BOOST_BASENAME}
$(info BOOSTDIR is ${BOOSTDIR})
CCACHE := $(shell which ccache)
ifneq ($(CCACHE),)

View File

@ -47,12 +47,6 @@
#include <boost/version.hpp>
#if BOOST_VERSION == 105200
#error Boost is still 1.52.0
#elif BOOST_VERSION != 106700
#error Boost is not 1.67.0
#endif
using namespace std::rel_ops;
#define TEST( condition ) if (!(condition)); else { static TraceEvent* __test = &(TraceEvent("CodeCoverage").detail("File", __FILE__).detail("Line",__LINE__).detail("Condition", #condition)); }