-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed several issues relating to the static and const keywords (#123)
* fix several miscompilations relating to the const and static keywords, add -g flag to Makefile * change how __FILE__ and __LINE__ are used * remove some trailing whitespace * remove file and line macros * revert -g flag and ci changes * revert -g flag and ci changes * only skip static for globals * fix typo * squashed commits --------- Co-authored-by: Laurent Huberdeau <[email protected]>
- Loading branch information
1 parent
5e20a86
commit 93bbc5c
Showing
4 changed files
with
40 additions
and
8 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
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
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,6 @@ | ||
int main(int argc, char** argv) { | ||
(void) argc; | ||
(void) argc; | ||
|
||
return 0; | ||
} |
Empty file.