summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-09-23 08:32:40 +0200
committerTyge Løvset <[email protected]>2021-09-23 08:32:40 +0200
commitcaa64bd67527b68c159fd33130f43de65d3a18d1 (patch)
tree09107b69ebc0e965263ee5c37599a109fe47f57c
parent09920602358cfeda2532a97479a7a70ac9954f44 (diff)
downloadSTC-modified-caa64bd67527b68c159fd33130f43de65d3a18d1.tar.gz
STC-modified-caa64bd67527b68c159fd33130f43de65d3a18d1.zip
Remark.
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 48ad3533..3fc26682 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ Highlights
- **Small footprint** - Small source code and generated executables. The executable from the example below with six different containers is *22 kb in size* compiled with gcc -Os on linux.
- **Dual mode compilation** - By default it is a simple header-only library with inline and static methods only, but you can easily switch to create a traditional library with shared symbols, without changing existing source files. See the Installation section.
- **No callback functions** - All passed template argument functions/macros are directly called from the implementation, no slow callbacks which requires storage.
-- **Compiles with C++ and C99** - C code can be compiled with C++.
+- **Compiles with C++ and C99** - C code can be compiled with C++ (container element types must be POD).
- **Container prefix and forward declaration** - Templated containers may have user defined prefix, e.g. MyVec_push_back(). They may also be forward declared without including the full API/implementation. See documentation below.
Performance