summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarius <[email protected]>2023-03-13 18:10:43 +0100
committerGitHub <[email protected]>2023-03-13 18:10:43 +0100
commit9e5f6f21333ce0d5f274c93ffb58c1ef96073db9 (patch)
treeab428816b4bc4b398819854ccbca2de69b01355f
parentfddae5ef07fc0e9a018e56a9843e059a737e4db7 (diff)
downloadSTC-modified-9e5f6f21333ce0d5f274c93ffb58c1ef96073db9.tar.gz
STC-modified-9e5f6f21333ce0d5f274c93ffb58c1ef96073db9.zip
Fix typo in forward declaration example
I couldn't get forward declarations to work because I copied the typo from the README.
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c214413b..cfab70ad 100644
--- a/README.md
+++ b/README.md
@@ -510,7 +510,7 @@ typedef struct Dataset {
...
// Implementation
-#define c_opt c_is_forward // flag that the container was forward declared.
+#define i_opt c_is_forward // flag that the container was forward declared.
#define i_val struct Point
#define i_tag pnt
#include <stc/cstack.h>