From d48a0d9bd9534be9d00248d7097151eb6056c3e1 Mon Sep 17 00:00:00 2001 From: Faruk Eryilmaz Date: Wed, 10 Jan 2024 22:25:41 +0300 Subject: [PATCH] update CHANGELOG.md to highlight recommendations for uniform data handling across platforms --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f63e849..1c197bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,5 +36,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - MIT License for open and permissive usage. ### Known Issues and Limitations -- Architecture and platform-dependent type sizes for certain data types like `std::size_t` and `long int`, which can cause inconsistencies across different platforms and architectures. Recommended use of fixed-width integer types from `` for cross-platform compatibility. +- Certain types in C++, such as `std::size_t` and `long int` can vary in size across different architectures and platforms. Utilization of `fixed-width integer types` from `` is recommended for uniform data representation across different platforms and architectures. - Current lack of support for `std::wstring` and `std::wstring_view` due to variations in `wchar_t` size across platforms. Users are advised to use `std::string` and `std::string_view` for string serialization. \ No newline at end of file