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:
Teon Banek
2017-04-19 15:52:20 +02:00
parent e5cc3f1561
commit 893df584f6
34 changed files with 302 additions and 225 deletions

View File

@@ -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);