13 lines
212 B
C++
13 lines
212 B
C++
/*
|
|
* Copyright (C) 2014 Cloudius Systems, Ltd.
|
|
*/
|
|
|
|
#ifndef UNITS_HH_
|
|
#define UNITS_HH_
|
|
|
|
static constexpr size_t KB = 1 << 10;
|
|
static constexpr size_t MB = 1 << 20;
|
|
static constexpr size_t GB = 1 << 30;
|
|
|
|
#endif
|