3 comments (3 comments)4 reactions (4 reactions)0 assignees (0 assignees)C++5,745 forks (5,745 forks)batch import
Pri: 2approvedcodebase qualityhelp wanted
Repository metrics
- Stars
- 30,929 stars (30,929 stars)
- PR merge metrics
- Avg merge 15h 43m (Avg merge 15h 43m)7 merged PRs in 30d (7 merged PRs in 30d)
Description
Calculator currently uses windows-specific types in some places, such as UINT. We should adopt the C++ standard types in their place.
Contributor guide
- Research direction
- Identify all occurrences of Windows specific types (e.g., UINT, DWORD) in the codebase and replace them with standard C++ equivalents (e.g., uint32 t, uint64 t). Ensure compatibility and consider using <cstdint> or <cstddef> headers.
- Tech stack
- cpp
- Domain
- desktop
- Issue type
- Refactor
- Prerequisites
- C++Git