Revert "Add a description of the internal array data structure."

Let's focus on the core features, and add the fluff later.
This commit is contained in:
2018-04-21 17:14:41 -07:00
parent d096e2155c
commit 596e1419b4
2 changed files with 1 additions and 39 deletions

View File

@@ -8,7 +8,7 @@ project(libabacus)
add_compile_options(-pedantic -Wall)
add_library(abacus STATIC src/lexer.c src/util.c src/table.c src/parser.c src/libabacus.c src/tree.c src/debug.c src/parsetype.c src/reserved.c src/trie.c src/refcount.c src/ref_vec.c src/ref_trie.c src/basetype.c src/value.c src/custom.c src/types.c)
add_library(abacus STATIC src/lexer.c src/util.c src/table.c src/parser.c src/libabacus.c src/tree.c src/debug.c src/parsetype.c src/reserved.c src/trie.c src/refcount.c src/ref_vec.c src/ref_trie.c src/basetype.c src/value.c src/custom.c)
add_executable(libabacus src/main.c)
add_subdirectory(external/liblex)