This repository has been archived by the owner on Apr 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from AjaniBilby/dev
+Static/Dynamic length arrays; ~updated casting
- Loading branch information
Showing
18 changed files
with
461 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{ | ||
"editor.insertSpaces": false, | ||
"files.eol": "\n", | ||
"files.trimTrailingWhitespace": true | ||
"files.trimTrailingWhitespace": true, | ||
"files.associations": { | ||
"*.qp": "qupa", | ||
"cstdio": "cpp" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Change Log | ||
|
||
## Unreleased | ||
|
||
### Added | ||
|
||
+ Statically defined length arrays | ||
+ Dynamically defined length arrays | ||
+ Primative compile time resolved function ``sizeof()`` | ||
+ Primative function ``static_cast`` - allows primative type conversion, and pointer conversion | ||
+ Primative memory allocation functions ``malloc()``/``free()`` | ||
|
||
### Fixes | ||
|
||
+ Incorrect datatype error logging | ||
+ Fixed template datatype parsing | ||
|
||
### Changes | ||
|
||
+ Templates usable for datatype access | ||
+ Bitcasting replaced with ``static_cast`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.