index
:
odin/Odin.git
bill/all_or_none
bill/any-type-switch-if-else
bill/change-license
bill/compiler-optimizations-2025-09
bill/conditional-zero
bill/const-union
bill/dir-organization
bill/disallow-128-bit
bill/fix-current-os-package
bill/fix-data-races-2026-02
bill/force-type-assert
bill/global-variable-distribution
bill/init-fini-changes
bill/integer-concatenation
bill/io-error-changes
bill/must-tail
bill/new-slice-sort
bill/range-init
bill/remove-test-suffix
bill/shared-partial-return-memory
bill/subtype-type-info
bill/typeid-sip-hash
bill/utf16-strings
core-flags
core_os2_revamp
custom-math-sin
fix-4225
llvm-12-support
master
middle-end
mimalloc
mv/libc-errors
new_os
orca-dev
text-template
update-tilde
windows-llvm-11.1.0
windows-llvm-12.0.1
windows-llvm-13.0.0
Odin Programming Language
Odin Lang
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
core
/
mem.odin
Commit message (
Collapse
)
Author
Age
Files
Lines
*
Parse directories to be packages
gingerBill
2018-05-21
1
-226
/
+0
|
*
Disable pointer arithmetic
gingerBill
2018-05-13
1
-5
/
+15
|
*
Change `FreeAll` to `Free_All`
gingerBill
2018-05-13
1
-1
/
+1
|
*
`type_info_of` allows `typeid`; `typeid_of` allows `^Type_Info`; Otherwise ↵
gingerBill
2018-05-12
1
-1
/
+1
|
|
|
|
only allow type
*
Make `any` use `typeid` rather than `^Type_Info`
gingerBill
2018-05-12
1
-1
/
+3
|
*
Move os_*.odin files to os/
gingerBill
2018-03-04
1
-2
/
+2
|
*
Auto stash before merge of "master" and "origin/master"
Brendan Punsky
2018-02-22
1
-0
/
+4
|
*
Remove old procedures
gingerBill
2018-02-13
1
-104
/
+0
|
*
`distinct` keyword for type declarations
gingerBill
2018-02-05
1
-1
/
+1
|
*
Fix mem.odin #173
gingerBill
2018-01-12
1
-2
/
+1
|
*
Make core library use procedure groupings rather than normal overloading
gingerBill
2017-12-04
1
-3
/
+5
|
*
Remove `vector` type (will be replaced by something else in the future)
gingerBill
2017-11-30
1
-13
/
+1
|
*
New slice memory layout (ptr+len); `byte`
gingerBill
2017-11-26
1
-22
/
+25
|
*
Add `ptr_to_bytes`
gingerBill
2017-11-16
1
-0
/
+10
|
*
Disable all cyclic importations
gingerBill
2017-11-13
1
-2
/
+0
|
*
Fix opening file without close; Minor fixes
gingerBill
2017-11-09
1
-5
/
+5
|
*
Change push allocator system; update core libraries
gingerBill
2017-11-09
1
-1
/
+8
|
*
Add Source_Code_Location parameter Allocator_Proc (#138)
gingerBill
2017-11-08
1
-1
/
+1
|
*
Fix fmt printing `uintptr` type
gingerBill
2017-11-04
1
-3
/
+3
|
*
Infix proc calling convention `proc "std" (...)`
gingerBill
2017-10-29
1
-12
/
+12
|
*
Attributes; @(link_name="foo")
gingerBill
2017-10-29
1
-12
/
+12
|
*
Fix issue with #118
Ginger Bill
2017-10-12
1
-2
/
+5
|
*
`match` to `switch`; Optional semicolons after "import" statements
Ginger Bill
2017-10-01
1
-4
/
+4
|
*
Use comma for struct field separators (disallow nesting)
Ginger Bill
2017-09-21
1
-47
/
+43
|
*
Fix file load order and allow when statements at file scope
Ginger Bill
2017-09-20
1
-3
/
+0
|
*
Library collections
Ginger Bill
2017-09-07
1
-3
/
+3
|
*
Replace `import_load` with `using import .`
Ginger Bill
2017-08-27
1
-5
/
+4
|
*
Fix `mem.Arena`
Ginger Bill
2017-08-13
1
-7
/
+5
|
*
v0.6.2; Use Ada_Case for types
v0.6.2
Ginger Bill
2017-08-03
1
-6
/
+6
|
*
Internal changes; thread.odin for windows only
Ginger Bill
2017-07-20
1
-5
/
+5
|
*
Update internals of a Union and Tuple
Ginger Bill
2017-07-20
1
-4
/
+0
|
*
Remove `atomic`, `++`, and `--`
Ginger Bill
2017-07-18
1
-3
/
+4
|
*
Change precedence order for types e.g. ^T(x) == ^(T(x))
Ginger Bill
2017-07-13
1
-8
/
+8
|
*
Clean up _preload.odin types
Ginger Bill
2017-07-10
1
-4
/
+4
|
*
`union` type allow for any types and removes common fields
Ginger Bill
2017-07-10
1
-15
/
+15
|
*
Use semicolons as field delimiters in records
Ginger Bill
2017-07-10
1
-7
/
+7
|
*
`..` half closed range; `...` open range; `...` variadic syntax
Ginger Bill
2017-07-07
1
-2
/
+2
|
*
Add `free` for maps (a previous oversight)
Ginger Bill
2017-07-05
1
-3
/
+6
|
*
Disable polymorphic overloading in the global scope
Ginger Bill
2017-07-02
1
-30
/
+36
|
|
|
|
TODO: Figure out why it does not work in the global scope
*
:: style procedure declarations; remove old parsing code
Ginger Bill
2017-06-28
1
-27
/
+27
|
*
Remove `type` prefix declarations
Ginger Bill
2017-06-28
1
-13
/
+13
|
*
Disable `var` and `const` declarations
Ginger Bill
2017-06-28
1
-26
/
+26
|
*
Declaration grouping uses () rather than {}; Fix some problem with ↵
Ginger Bill
2017-06-17
1
-4
/
+4
|
|
|
|
compilation on *nix
*
Declaration grouping uses braces rather than parentheses
Ginger Bill
2017-06-13
1
-4
/
+4
|
*
`foreign` blocks for procedures
Ginger Bill
2017-06-12
1
-5
/
+5
|
*
Update default field value syntax; Use more declaration groupings
Ginger Bill
2017-06-12
1
-11
/
+12
|
*
Pascal style declaration grouping with ()
Ginger Bill
2017-06-12
1
-2
/
+4
|
*
`import` and `import_load` as keywords; Fix procedure literal call trick
Ginger Bill
2017-06-12
1
-2
/
+2
|
*
Prefix `type` and `let` to replace `immutable`
Ginger Bill
2017-06-12
1
-3
/
+3
|
*
Prefix `proc` syntax
Ginger Bill
2017-06-12
1
-27
/
+27
|
[next]