Fabcoin Core  0.16.2
P2P Digital Currency
Common.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <cstdint>
4 
5 namespace dev
6 {
7 namespace evmjit
8 {
9 
10 using byte = uint8_t;
11 using code_iterator = byte const*;
12 
13 #define UNTESTED assert(false)
14 
15 }
16 }
Adapted from code found on http://stackoverflow.com/questions/180947/base64-decode-snippet-in-c Origi...
Definition: Arith256.cpp:15
byte const * code_iterator
Definition: Common.h:11
uint8_t byte
Definition: Common.h:10