-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Couple bug fixes, stricmp crap, & version number
Fixed a case where the compiler would report the incorrect file and line number for a OBJ keyword not in the first column. Made another attempt at resolving the madness that is stricmp/strcasecmp in GCC which changed with 4.8 and newer builds of GCC. Added Version to the banner printout. We are currently version 1.00.70. the 70 is the build number. I'll be incrementing that whenever I do a build. I'll attempt to tag the source whenever I do a build.
- Loading branch information
Showing
3 changed files
with
23 additions
and
5 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 |
---|---|---|
|
@@ -824,6 +824,10 @@ bool CompileObjBlocksId() | |
} | ||
} | ||
} | ||
else | ||
{ | ||
return false; | ||
} | ||
} | ||
return true; | ||
} | ||
|
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