diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-29 12:46:55 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-29 12:46:55 -0500 |
| commit | dcd4fd77976a7e8a9ef1f4778514f36f883c27c4 (patch) | |
| tree | 9f94f8209e73c9b2b9cea1c29fd1670f0efe77ae /builtins/functions.h | |
| parent | 291a0ed40cc141496428cc2bbff606d32e4af9da (diff) | |
Fix const issue
Diffstat (limited to 'builtins/functions.h')
| -rw-r--r-- | builtins/functions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/functions.h b/builtins/functions.h index 6342c47d..301630d8 100644 --- a/builtins/functions.h +++ b/builtins/functions.h @@ -11,7 +11,7 @@ extern const char *SSS_HASH_VECTOR; void fail(CORD fmt, ...); void fail_source(const char *filename, int64_t start, int64_t end, CORD fmt, ...); CORD builtin_last_err(); -public void __doctest(void *expr, TypeInfo *type, CORD expected, const char *filename, int64_t start, int64_t end); +public void __doctest(void *expr, const TypeInfo *type, CORD expected, const char *filename, int64_t start, int64_t end); uint32_t generic_hash(const void *obj, const TypeInfo *type); int32_t generic_compare(const void *x, const void *y, const TypeInfo *type); |
