Renamed AssertDynamicallyAllocatable --> IsDynamicallyAllocatable

This commit is contained in:
Pavel Kirienko 2014-02-05 01:21:53 +04:00
parent f91d8090c9
commit fb0f44c4b4
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ enum { MEM_POOL_ALIGNMENT = 8 };
typedef char _alignment_check_for_MEM_POOL_BLOCK_SIZE[((MEM_POOL_BLOCK_SIZE & (MEM_POOL_ALIGNMENT - 1)) == 0) ? 1 : -1];
template <typename T>
struct AssertDynamicallyAllocatable
struct IsDynamicallyAllocatable
{
static void check() { StaticAssert<sizeof(T) <= MEM_POOL_BLOCK_SIZE>::check(); }
};

View File

@ -45,7 +45,7 @@ public:
, qos(uint8_t(qos))
{
assert(qos == VOLATILE || qos == PERSISTENT);
AssertDynamicallyAllocatable<Entry>::check();
IsDynamicallyAllocatable<Entry>::check();
}
bool isExpired(uint64_t monotonic_timestamp) const { return monotonic_timestamp > monotonic_deadline; }

View File

@ -87,7 +87,7 @@ private:
StorageEntryGroup()
{
AssertDynamicallyAllocatable<StorageEntryGroup>::check();
IsDynamicallyAllocatable<StorageEntryGroup>::check();
StaticAssert<NUM_ENTRIES >= 2>::check();
}
};