File: ROADMAP.md

package info (click to toggle)
c4core 0.2.7-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 5,184 kB
  • sloc: cpp: 35,521; python: 2,786; javascript: 414; makefile: 6
file content (23 lines) | stat: -rw-r--r-- 567 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ROADMAP

## New features

These changes will provide new features, and client code can be kept
unchanged.


## API changes

These changes will require client code to be updated.

* [breaking] drop use of C-style sprintf() formats in error messages and
  assertions. Change the implementation to use c4::format()
  ```c++
  C4_ASSERT_MSG(sz > s.size(), "sz=%zu s.size()=%zu", sz, s.size());
  // ... the above changes to:
  C4_ASSERT_MSG(sz > s.size(), "sz={} s.size()={}", sz, s.size());
  ```

## Implementation changes

* drop calls to sprintf() in charconv.hpp.