1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
// Author: David Alexander
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <algorithm>
#include <boost/foreach.hpp>
#include <string>
#include <ConsensusCore/Types.hpp>
#define STRINGIFY(x) #x
#define TOSTRING(x) STRINGIFY(x)
#define LOCATION __FILE__ ":" TOSTRING(__LINE__)
// Floating point comparison
bool AlmostEqual(float A, float B, int maxUlps = 4);
#define ShouldNotReachHere() \
fprintf(stderr, "Should not reach here! at " LOCATION "\n"); \
throw InternalError("Should not reach here: " LOCATION)
#define NotYetImplemented() throw NotYetImplementedException()
// For use in debugging only.
#define Breakpoint() asm volatile("int3;")
#ifdef NDEBUG
#define DEBUG_ONLY(stmt)
#else
#define DEBUG_ONLY(stmt) stmt
#endif
// Workarounds for Eclipse+CDT problems
#ifdef __CDT_PARSER__
#define foreach(a, b) for (a : b)
#else
#define foreach(a, b) BOOST_FOREACH (a, b)
#endif
// Aggressive sledghammer for forcing inlining
#ifdef _MSC_VER
#define INLINE_CALLEES
#else
#define INLINE_CALLEES __attribute__((flatten))
#endif
|