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
13 lines
229 B
C++
13 lines
229 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
// is there a better way?
|
|
#if UINTPTR_MAX == 0xffffffff
|
|
#define MEMGRAPH32
|
|
#elif UINTPTR_MAX == 0xffffffffffffffff
|
|
#define MEMGRAPH64
|
|
#else
|
|
#error Unrecognized platform (neither 32 or 64)
|
|
#endif
|