From 27772673dbd49ea74d79865fd0c837c5f6173f13 Mon Sep 17 00:00:00 2001 From: Tyge Løvset <60263450+tylov@users.noreply.github.com> Date: Mon, 22 Jun 2020 21:49:17 +0200 Subject: Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d551db4..6bbc5cf5 100644 --- a/README.md +++ b/README.md @@ -46,12 +46,12 @@ Installation Because it is headers only, files can simply be included in your program. The functions will be inlined by default. If containers are extensively used accross many tranlation units with common instantiated container types, it is recommended to build as a library, to minimize executable size. To enable this mode, specify **-DSTC_HEADER** as compiler argument, and put all the instantiations of the containers used in one C file, e.g. ``` #define STC_IMPLEMENTATION -#include #include +#include +declare_CHash(ii, MAP, int, int); +declare_CHash(ix, SET, int64_t); declare_CVector(i, int); -declare_CHash(ii, map, int, int); -declare_CHash(64, set, int64_t); ... ``` Performance -- cgit v1.2.3