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 | |
|---|---|---|
| .. | ||
| ApplicationManager.cpp | 5 years ago | |
| ApplicationManager.h | 5 years ago | |
| ApplicationManagerAPI.h | 5 years ago | |
| ApplicationManagerBase.cpp | 5 years ago | |
| ApplicationManagerBase.h | 5 years ago | |
| ApplicationServer.cpp | 5 years ago | |
| ApplicationServer.h | 5 years ago | |
| AssetBuilderInfo.cpp | 5 years ago | |
| AssetBuilderInfo.h | 5 years ago | |
| AssetServerHandler.cpp | 5 years ago | |
| AssetServerHandler.h | 5 years ago | |
| AssetUtilEBusHelper.h | 5 years ago | |
| BatchApplicationManager.cpp | 5 years ago | |
| BatchApplicationManager.h | 5 years ago | |
| BatchApplicationServer.cpp | 5 years ago | |
| BatchApplicationServer.h | 5 years ago | |
| BuilderConfigurationBus.h | 5 years ago | |
| BuilderConfigurationManager.cpp | 5 years ago | |
| BuilderConfigurationManager.h | 5 years ago | |
| BuilderManager.cpp | 5 years ago | |
| BuilderManager.h | 5 years ago | |
| BuilderManager.inl | 5 years ago | |
| ByteArrayStream.cpp | 5 years ago | |
| ByteArrayStream.h | 5 years ago | |
| CommunicatorTracePrinter.cpp | 5 years ago | |
| CommunicatorTracePrinter.h | 5 years ago | |
| GUIApplicationManager.cpp | 5 years ago | |
| GUIApplicationManager.h | 5 years ago | |
| GUIApplicationServer.cpp | 5 years ago | |
| GUIApplicationServer.h | 5 years ago | |
| IniConfiguration.cpp | 5 years ago | |
| IniConfiguration.h | 5 years ago | |
| JobDiagnosticTracker.cpp | 5 years ago | |
| JobDiagnosticTracker.h | 5 years ago | |
| LineByLineDependencyScanner.cpp | 5 years ago | |
| LineByLineDependencyScanner.h | 5 years ago | |
| LogPanel.cpp | 5 years ago | |
| LogPanel.h | 5 years ago | |
| MissingDependencyScanner.cpp | 5 years ago | |
| MissingDependencyScanner.h | 5 years ago | |
| PlatformConfiguration.cpp | 5 years ago | |
| PlatformConfiguration.h | 5 years ago | |
| PotentialDependencies.h | 5 years ago | |
| SpecializedDependencyScanner.h | 5 years ago | |
| ThreadHelper.cpp | 5 years ago | |
| ThreadHelper.h | 5 years ago | |
| UnitTestShaderCompilerServer.cpp | 5 years ago | |
| UnitTestShaderCompilerServer.h | 5 years ago | |
| assetUtils.cpp | 4 years ago | |
| assetUtils.h | 5 years ago | |
| windowscreen.cpp | 5 years ago | |
| windowscreen.h | 5 years ago | |