Merge utils/exceptions into single file
Summary: Update documentation of `utils/exceptions.hpp` Reviewers: mislav.bradac, florijan, buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D300
This commit is contained in:
@@ -10,7 +10,7 @@ struct Object {
|
||||
};
|
||||
|
||||
TEST(StackAllocatorTest, AllocationAndObjectValidity) {
|
||||
StackAllocator allocator;
|
||||
utils::StackAllocator allocator;
|
||||
for (int i = 0; i < 64 * 1024; ++i) {
|
||||
auto object = allocator.make<Object>(1, 2);
|
||||
ASSERT_EQ(object->a, 1);
|
||||
|
||||
Reference in New Issue
Block a user