-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solve Additional Mingw-32 Compile Errors (#60)
* Initial refactor of 'CMarkup::Format'. * Updating syntax issues. * Updating syntax issues. * Saving. * Some additional fixing, tested with ASAN to make sure the Heap buffer overflow issue is gone. * Revert 'RTClientSDK.vcxproj' to original state. * Update code to utilize 'std::string' instead. * Remove extra indentation. * Added comment. * Remove Windows-only code, only use cross-platform version. * Updated back to a if-windows solution to reintroduce usage of safer function calls when possible. * Included 'cstdint' to rectify additional compile errors. * Fix incorrect indentation. * Fix incorrect indentation. * Fix incorrect indentation. * Remove duplicate code. * Remove redundant comments. * Replace tabs with spaces. * Revert 'Markup.cpp' to master version. * Move 'cstdint' from .cpp file to .h file. * Change from c-include to cpp-include of 'stdint'. * Remove include from 'RTPacket.h', add 'std::' to uint and int usages in RTProtocol.h for correctness. * Change remaining usages of special int and uint for correctness. * Add missed 'std::'.
- Loading branch information
1 parent
034309c
commit 28c8bf5
Showing
4 changed files
with
33 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
|
||
#include <memory.h> | ||
#include <float.h> | ||
#include <stdint.h> | ||
#include <math.h> | ||
|
||
#ifdef _WIN32 | ||
|
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