Improve minimum dependency for complex numbers and quaternion numbers.

This commit is contained in:
gingerBill
2020-01-04 18:04:12 +00:00
parent 5ae924f988
commit 5c7d6fcfd0
3 changed files with 19 additions and 9 deletions
+2
View File
@@ -437,12 +437,14 @@ default_logger :: proc() -> Logger {
}
@private
__init_context_from_ptr :: proc "contextless" (c: ^Context, other: ^Context) {
if c == nil do return;
c^ = other^;
__init_context(c);
}
@private
__init_context :: proc "contextless" (c: ^Context) {
if c == nil do return;