e7f5bd4c21
Summary: antlr integration, *.hpp and *.cpp inside src dir, cleanup Test Plan: manual Reviewers: mislav.bradac, dgleich, florijan Reviewed By: florijan Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D49
11 lines
297 B
C++
11 lines
297 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
// TODO: more bytes can be saved if this is array with exact size as number
|
|
// of elements.
|
|
// TODO: even more bytes can be saved if this is one ptr to structure which
|
|
// holds len followed by len sized array.
|
|
template <class T>
|
|
using ArrayStore = std::vector<T>;
|