10 lines
140 B
C++
10 lines
140 B
C++
#ifndef BOLT_INTEGER_HPP
|
|
#define BOLT_INTEGER_HPP
|
|
|
|
namespace bolt {
|
|
|
|
using Integer = long long;
|
|
|
|
}
|
|
|
|
#endif // of #ifndef BOLT_INTEGER_HPP
|