You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
* Avoid redefining `PRI` macros on Linux The fixed width 64-bit integer types are defined differently per platform. Some platforms define it as "long", others define it as "long long". For consistency, `AZ::u64` or `AZ::s64` is always defined to "long long". However, this causes problems for formatting those types, because on platforms where `uint64_t` is a `long`, `PRIu64` gives the wrong format string for `AZ::u64`. Previously this was fixed by redefining the `PRI` macros so that they work for `AZ::u64`, but that breaks the ability to format `uint64_t`. We could add an AZ-specific version of the `PRI` macros for 64-bit integer types, but we don't really need to, since they are `long long` on every platform we support. * Use `%ll` for `AZ::u64` * Use `PRIu64` for `uint64_t` Signed-off-by: Chris Burel <burelc@amazon.com> * Avoid redefining `PRI` macros in CryCommon Signed-off-by: Chris Burel <burelc@amazon.com> |
4 years ago | |
|---|---|---|
| .. | ||
| LevelSystem | 4 years ago | |
| Platform | 4 years ago | |
| RemoteConsole | 4 years ago | |
| ViewSystem | 4 years ago | |
| XML | 4 years ago | |
| AZCoreLogSink.h | 4 years ago | |
| AZCrySystemInitLogSink.cpp | 5 years ago | |
| AZCrySystemInitLogSink.h | 5 years ago | |
| CMakeLists.txt | 4 years ago | |
| CmdLine.cpp | 4 years ago | |
| CmdLine.h | 4 years ago | |
| CmdLineArg.cpp | 5 years ago | |
| CmdLineArg.h | 4 years ago | |
| ConsoleBatchFile.cpp | 4 years ago | |
| ConsoleBatchFile.h | 5 years ago | |
| ConsoleHelpGen.cpp | 4 years ago | |
| ConsoleHelpGen.h | 4 years ago | |
| CrySystem_precompiled.h | 4 years ago | |
| DebugCallStack.cpp | 4 years ago | |
| DebugCallStack.h | 4 years ago | |
| DllMain.cpp | 5 years ago | |
| Huffman.cpp | 5 years ago | |
| Huffman.h | 4 years ago | |
| IDebugCallStack.cpp | 4 years ago | |
| IDebugCallStack.h | 4 years ago | |
| LocalizedStringManager.cpp | 4 years ago | |
| LocalizedStringManager.h | 4 years ago | |
| Log.cpp | 4 years ago | |
| Log.h | 4 years ago | |
| SimpleStringPool.h | 4 years ago | |
| System.cpp | 4 years ago | |
| System.h | 4 years ago | |
| SystemCFG.cpp | 4 years ago | |
| SystemEventDispatcher.cpp | 4 years ago | |
| SystemEventDispatcher.h | 4 years ago | |
| SystemInit.cpp | 4 years ago | |
| SystemWin32.cpp | 4 years ago | |
| Timer.cpp | 4 years ago | |
| Timer.h | 5 years ago | |
| WindowsErrorReporting.cpp | 4 years ago | |
| XConsole.cpp | 4 years ago | |
| XConsole.h | 4 years ago | |
| XConsoleVariable.cpp | 4 years ago | |
| XConsoleVariable.h | 4 years ago | |
| crysystem_files.cmake | 4 years ago | |
| crysystem_shared_files.cmake | 5 years ago | |