No description
Stephen Seo
e0da16a63e
When reallocating more data, vector moves the original data to a new buffer. Deque preserves the location of the original data, preventing invalidated pointers to existing data when additional allocation is required. |
||
---|---|---|
src | ||
.gitignore | ||
AttributionNotice | ||
Doxyfile | ||
LICENSE | ||
README.md |
Compiling
Create a build directory.
mkdir build
Generate makefile with CMake.
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=True ../src
Build the project.
make
Optionally install the project to where you want to.
make DESTDIR=install_here install