aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-06-07 22:48:39 +0100
committergingerBill <bill@gingerbill.org>2023-06-07 22:48:39 +0100
commit9b15bda0552cf61dedb86924bbd48ac4fc8e25cd (patch)
tree9ad17c06f7725c8a47c420a666106f0411dc3be4
parent635842b322f3f12ed5a68f1dea4e3db45c0a3fee (diff)
Add missing packages to `examples/all`
-rw-r--r--core/debug/pe/section.odin3
-rw-r--r--core/text/match/strlib.odin5
-rw-r--r--core/text/table/table.odin2
-rw-r--r--examples/all/all_main.odin19
4 files changed, 21 insertions, 8 deletions
diff --git a/core/debug/pe/section.odin b/core/debug/pe/section.odin
index 809da8bb4..926306dbb 100644
--- a/core/debug/pe/section.odin
+++ b/core/debug/pe/section.odin
@@ -1,8 +1,5 @@
package debug_pe
-import "core:runtime"
-import "core:io"
-
Section_Header32 :: struct {
name: [8]u8,
virtual_size: u32le,
diff --git a/core/text/match/strlib.odin b/core/text/match/strlib.odin
index b8c2861fa..654996bc7 100644
--- a/core/text/match/strlib.odin
+++ b/core/text/match/strlib.odin
@@ -266,6 +266,7 @@ match_balance :: proc(ms: ^Match_State, s, p: int) -> (unused: int, err: Error)
return INVALID, .Invalid_Pattern_Capture
}
+
schar, ssize := utf8_peek(ms.src[s:]) or_return
pchar, psize := utf8_peek(ms.pattern[p:]) or_return
@@ -274,9 +275,9 @@ match_balance :: proc(ms: ^Match_State, s, p: int) -> (unused: int, err: Error)
return INVALID, .OK
}
- s_begin := s
cont := 1
- s := s + ssize
+ s := s
+ s += ssize
begin := pchar
end, _ := utf8_peek(ms.pattern[p + psize:]) or_return
diff --git a/core/text/table/table.odin b/core/text/table/table.odin
index df93ee44e..2b60df98f 100644
--- a/core/text/table/table.odin
+++ b/core/text/table/table.odin
@@ -9,12 +9,10 @@
package text_table
import "core:io"
-import "core:os"
import "core:fmt"
import "core:mem"
import "core:mem/virtual"
import "core:runtime"
-import "core:strings"
Cell :: struct {
text: string,
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin
index 07688cbc8..60850c806 100644
--- a/examples/all/all_main.odin
+++ b/examples/all/all_main.odin
@@ -19,6 +19,8 @@ import priority_queue "core:container/priority_queue"
import queue "core:container/queue"
import small_array "core:container/small_array"
import lru "core:container/lru"
+import list "core:container/intrusive/list"
+import topological_sort "core:container/topological_sort"
import crypto "core:crypto"
import blake "core:crypto/blake"
@@ -48,6 +50,8 @@ import crypto_util "core:crypto/util"
import whirlpool "core:crypto/whirlpool"
import x25519 "core:crypto/x25519"
+import pe "core:debug/pe"
+
import dynlib "core:dynlib"
import net "core:net"
@@ -58,9 +62,11 @@ import hxa "core:encoding/hxa"
import json "core:encoding/json"
import varint "core:encoding/varint"
import xml "core:encoding/xml"
+import endian "core:encoding/endian"
import fmt "core:fmt"
import hash "core:hash"
+import xxhash "core:hash/xxhash"
import image "core:image"
import netpbm "core:image/netpbm"
@@ -80,9 +86,10 @@ import glm "core:math/linalg/glsl"
import hlm "core:math/linalg/hlsl"
import noise "core:math/noise"
import rand "core:math/rand"
+import ease "core:math/ease"
import mem "core:mem"
-// import virtual "core:mem/virtual"
+import virtual "core:mem/virtual"
import ast "core:odin/ast"
import doc_format "core:odin/doc-format"
@@ -91,6 +98,8 @@ import odin_parser "core:odin/parser"
import odin_printer "core:odin/printer"
import odin_tokenizer "core:odin/tokenizer"
+import spall "core:prof/spall"
+
import os "core:os"
import slashpath "core:path/slashpath"
@@ -137,6 +146,8 @@ _ :: priority_queue
_ :: queue
_ :: small_array
_ :: lru
+_ :: list
+_ :: topological_sort
_ :: crypto
_ :: blake
_ :: blake2b
@@ -164,6 +175,7 @@ _ :: tiger2
_ :: crypto_util
_ :: whirlpool
_ :: x25519
+_ :: pe
_ :: dynlib
_ :: net
_ :: base32
@@ -173,8 +185,10 @@ _ :: hxa
_ :: json
_ :: varint
_ :: xml
+_ :: endian
_ :: fmt
_ :: hash
+_ :: xxhash
_ :: image
_ :: netpbm
_ :: png
@@ -191,7 +205,9 @@ _ :: glm
_ :: hlm
_ :: noise
_ :: rand
+_ :: ease
_ :: mem
+_ :: virtual
_ :: ast
_ :: doc_format
_ :: odin_format
@@ -199,6 +215,7 @@ _ :: odin_parser
_ :: odin_printer
_ :: odin_tokenizer
_ :: os
+_ :: spall
_ :: slashpath
_ :: filepath
_ :: reflect