summaryrefslogtreecommitdiff
path: root/kms++/src/blob.cpp
AgeCommit message (Collapse)Author
2025-12-18fix: Replace C-style casts with C++ static/reinterpret castsTomi Valkeinen
C-style casts should be replaced with appropriate C++ cast operators for better type safety and code clarity. This change fixes cppcheck style warnings about C-style pointer casting by using: - static_cast for simple pointer type conversions - reinterpret_cast for memory buffer pointer arithmetic The changes maintain identical functionality while following modern C++ best practices for explicit casting.
2020-10-09Bulk format of all filesTomi Valkeinen
2016-06-11kms++: organize into subdirsTomi Valkeinen