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
/
src
/
check_decl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add `"pure"` procedure types
gingerBill
2020-05-23
1
-2
/
+4
*
Fix #561 `where` statements that eval to false do not show incorrect usage lo...
gingerBill
2020-05-13
1
-1
/
+1
*
Let -vet ignore intentional declaration shadowing #637
gingerBill
2020-05-12
1
-0
/
+4
*
Add experimental atom op tables for llvm-backend
gingerBill
2020-05-02
1
-3
/
+21
*
Basic polymorphic named procedure parameters for procedures and records
gingerBill
2020-04-13
1
-2
/
+1
*
Simplify compiler's `Map` and create a `StringMap` specifically for strings
gingerBill
2020-04-13
1
-10
/
+10
*
Fix crash on aliasing compiler-only packages (e.g. intrinsics) with `_` at th...
gingerBill
2020-04-04
1
-0
/
+3
*
Merge branch 'master' into llvm-integration
gingerBill
2020-03-15
1
-0
/
+5
|
\
|
*
Add `@require` for global variables
gingerBill
2020-03-12
1
-0
/
+5
*
|
Fix nested type declarations name generation, to be internally consistent
gingerBill
2020-03-08
1
-0
/
+1
|
/
*
Improve error message on `using` with procedure parameters #568
gingerBill
2020-02-23
1
-1
/
+1
*
Add `-disable-assert` to disable the code generation of the built-in run-time...
gingerBill
2019-12-29
1
-0
/
+10
*
Add constant literal expressions
gingerBill
2019-12-27
1
-1
/
+1
*
Fix array lengths with enum value counts.
gingerBill
2019-12-27
1
-0
/
+3
*
Remove addressing mode `Addressing_Immutable`
gingerBill
2019-12-01
1
-2
/
+0
*
Fix Implicit Selector Expressions do not work at the global/package scope #484
gingerBill
2019-11-20
1
-1
/
+1
*
Fix Compiler assertion when applying `using` to `_` procedure parameter. #451
gingerBill
2019-10-26
1
-2
/
+1
*
Make `typeid` semantics consistent across variables and constants
gingerBill
2019-10-06
1
-17
/
+37
*
Add suggestions to errors on casts and assignments.
gingerBill
2019-09-17
1
-1
/
+2
*
Add `where` clauses to `struct` and `union`
gingerBill
2019-09-08
1
-1
/
+1
*
Fix Ir panic on using append() from within anonymous function #432
gingerBill
2019-09-04
1
-1
/
+2
*
`where` clauses for procedure literals
gingerBill
2019-08-31
1
-7
/
+26
*
Make `require_results` an attribute rather than a suffix tag for procedures
gingerBill
2019-08-31
1
-4
/
+3
*
Fix variable dependency ordering issues caused by procedure literals
gingerBill
2019-08-31
1
-8
/
+15
*
Fix global variable initialization ordering
gingerBill
2019-08-29
1
-2
/
+3
*
`package reflect`; fix substring type bug; fix scoping rules for `using` on p...
gingerBill
2019-08-11
1
-43
/
+75
*
Change scoping rules to allow for shadowing of procedure parameters but not n...
gingerBill
2019-07-27
1
-2
/
+2
*
Fix procedure constant declaration value type assignment checking
gingerBill
2019-06-21
1
-1
/
+54
*
Fixes to ABI
gingerBill
2019-05-29
1
-1
/
+1
*
Add `..<` operator for ranges; Add extra checking for bit set assignments
gingerBill
2019-05-28
1
-1
/
+1
*
odin query
gingerBill
2019-05-25
1
-1
/
+4
*
Improve type inference for variadic parameters
gingerBill
2019-05-04
1
-1
/
+1
*
`@(private)` for `foreign` blocks; Improve foreign signature similarity rules
gingerBill
2019-03-24
1
-25
/
+45
*
Add error message for when trying to assign a type to a variable.
gingerBill
2019-03-22
1
-0
/
+8
*
Disallow attributes on alias declarations
gingerBill
2019-03-15
1
-2
/
+12
*
Make `static` an attribute rather than a keyword prefix
gingerBill
2019-02-23
1
-1
/
+6
*
Replace `foreign export {}` with `@export`
gingerBill
2019-02-23
1
-5
/
+6
*
Replace `deferred` with `deferred_none`, `deferred_in`, `deferred_out`
gingerBill
2019-01-13
1
-1
/
+1
*
`deferred` procedure attribute
gingerBill
2018-12-14
1
-0
/
+5
*
`opaque` keyword and type
gingerBill
2018-11-11
1
-0
/
+3
*
Fix `using import` override "bug"
gingerBill
2018-09-29
1
-1
/
+10
*
Minor fixes
gingerBill
2018-09-24
1
-0
/
+2
*
Syntactic sugar for anonymous enum within a bit set
gingerBill
2018-09-11
1
-1
/
+0
*
`typeid` as keyword (ready to implement polymorphic name parameters)
gingerBill
2018-09-02
1
-5
/
+9
*
Change memory layout of `map` to be 3 words smaller
gingerBill
2018-08-30
1
-2
/
+15
*
Disable non-comparison operations for enum (use `bit_set` for flags)
gingerBill
2018-08-17
1
-1
/
+1
*
Add older demos
gingerBill
2018-07-29
1
-11
/
+11
*
Do `using Foo :: enum` at the `type_decl` stage
gingerBill
2018-07-29
1
-0
/
+27
*
Allow importation of `core:builtin` to get built-in entities
gingerBill
2018-06-17
1
-12
/
+8
*
Big renaming: `AstNode` to `Ast`
gingerBill
2018-06-17
1
-35
/
+35
[next]