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_type.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add nullptr assert for #5875
Jeroen van Rijn
2025-11-03
1
-0
/
+2
*
Improve error message for missing `&` in some parapoly messages
gingerBill
2025-10-27
1
-0
/
+6
*
Use `RecursiveMutex` to fix a race condition with parapoly records
gingerBill
2025-09-26
1
-2
/
+3
*
Use a `RwMutex` instead of `BlockingMutex`
gingerBill
2025-09-10
1
-2
/
+2
*
Remove global `PtrMap<Type *, GenTypesData *>` and store on the `TypeNamed` d...
gingerBill
2025-09-10
1
-9
/
+9
*
Minimize more thread contention
gingerBill
2025-09-10
1
-4
/
+5
*
Minor clean up of permanent/temporary arena usage
gingerBill
2025-09-10
1
-12
/
+12
*
skip errors on polymorphic procs when in a proc group with other options
A1029384756
2025-08-28
1
-1
/
+3
*
Fix instantiation of package for parapoly records
gingerBill
2025-08-07
1
-2
/
+12
*
Remove the semantics of `#no_copy`, keep the grammar
gingerBill
2025-07-30
1
-1
/
+0
*
Merge pull request #5150 from wishfoundry/patch-1
Laytan
2025-06-20
1
-1
/
+1
|
\
|
*
spelling in compilation errors
Ben
2025-05-11
1
-1
/
+1
*
|
fix another type alias issue with mini cycle
Laytan Laats
2025-05-26
1
-2
/
+6
|
/
*
CHECK 3 done
bogwi
2025-05-05
1
-1
/
+10
*
Allow polymorphic #simd array as return type
Jeroen van Rijn
2025-05-02
1
-1
/
+4
*
Change hashing rules for float-like types to make `0 == -0`
gingerBill
2025-04-16
1
-0
/
+15
*
Remove `bit_field` -> `bit_set` warning.
Jeroen van Rijn
2025-04-12
1
-3
/
+2
*
Actually maybe fix #5015
gingerBill
2025-04-09
1
-0
/
+1
*
Fix #5015
gingerBill
2025-04-09
1
-0
/
+10
*
Fix #5020
Jeroen van Rijn
2025-04-08
1
-1
/
+3
*
Improve error message for matrices with no rows or columns
gingerBill
2025-02-22
1
-6
/
+14
*
compiler: fix align error check
Laytan Laats
2025-01-15
1
-1
/
+2
*
Fix crash when proc return type is undeclared parapoly variable
Roland Kovacs
2024-12-22
1
-1
/
+8
*
Check `type_expr` in `check_procedure_param_polymorphic_type`
Jeroen van Rijn
2024-11-27
1
-2
/
+1
*
Remove `#relative` types from the compiler
gingerBill
2024-11-14
1
-35
/
+2
*
`#min_field_align` & `#max_field_align`; deprecate `#field_align` in favour o...
gingerBill
2024-09-30
1
-6
/
+25
*
add '#caller_expression'
Laytan Laats
2024-09-14
1
-0
/
+32
*
fix variadic parameter with default value error check
Laytan
2024-08-21
1
-2
/
+5
*
Error if missing map key type
Jeroen van Rijn
2024-08-17
1
-0
/
+12
*
Merge pull request #2977 from jakubtomsu/disallow-variadic-param-default
Laytan
2024-08-14
1
-0
/
+2
|
\
|
*
Add nullptr check back
jakubtomsu
2023-11-25
1
-1
/
+1
|
*
Check for variadic param default val
jakubtomsu
2023-11-25
1
-1
/
+3
*
|
Check if procedure parameter type declares polymorphic args
Roland Kovacs
2024-08-08
1
-0
/
+21
*
|
Add `#simd[N]rawptr` support
gingerBill
2024-08-05
1
-1
/
+1
*
|
Add suggestion for #3961
gingerBill
2024-07-22
1
-0
/
+19
*
|
Improve error handling for invalid syntax doing `[*]T`
gingerBill
2024-07-22
1
-3
/
+9
*
|
Begin work for `bit_set[...; [N]T]` (not working)
gingerBill
2024-07-15
1
-17
/
+4
*
|
Add error for `#no_capture` being reserved for future use
gingerBill
2024-07-14
1
-1
/
+1
*
|
Restrict `#no_capture` to pointer-like types only
gingerBill
2024-07-14
1
-5
/
+1
*
|
Mock out `#no_capture` for future use
gingerBill
2024-07-14
1
-8
/
+24
*
|
Imply `#no_capture` to all variadic parameters
gingerBill
2024-07-14
1
-1
/
+9
*
|
Add `#no_capture args: ..T` to reuse the backing array stack memory
gingerBill
2024-07-14
1
-0
/
+17
*
|
Give error message suggestion when doing `^x` instead of `x^` if `x` is an r-...
gingerBill
2024-07-10
1
-0
/
+4
*
|
Change `..` variadic logic; comment out unneeded error message
gingerBill
2024-07-10
1
-17
/
+19
*
|
Fix #3894
gingerBill
2024-07-09
1
-0
/
+2
*
|
Fix not detecting duplicate proc cases
Laytan Laats
2024-07-05
1
-1
/
+1
*
|
Fix #3803
gingerBill
2024-06-28
1
-3
/
+5
*
|
fix regression in test_issue_2395
Laytan Laats
2024-06-07
1
-1
/
+1
*
|
Remove unnecessary Wait_Signal checks
gingerBill
2024-06-07
1
-4
/
+0
*
|
Try to fix a possible race condition with polymorphic record parameters
gingerBill
2024-06-06
1
-17
/
+13
[next]