You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
392 B
25 lines
392 B
10 years ago
|
#pragma once
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
#include "Common.h"
|
||
|
|
||
|
namespace dev
|
||
|
{
|
||
|
namespace eth
|
||
|
{
|
||
|
namespace jit
|
||
|
{
|
||
|
|
||
|
struct JIT: public NoteChannel { static const char* name() { return "JIT"; } };
|
||
|
|
||
|
//#define clog(CHANNEL) std::cerr
|
||
|
#define clog(CHANNEL) std::ostream(nullptr)
|
||
|
|
||
|
// The same as assert, but expression is always evaluated and result returned
|
||
|
#define CHECK(expr) (assert(expr), expr)
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|