1
2https://github.com/catchorg/Catch2/commit/de36b2ada6e4593a9a32c4c86cd47d4bc002b148
3
4add [[noreturn]] to MessageBuilder::react() - and actually make a separate function (react2) for the FAIL() case
5
6look at runtime performance stuff
7https://github.com/catchorg/Catch2/issues/1086
8
9SUCCEED();
10
11rethink static code analisys suppressions - users shouldn't have to use the same flags for code which uses doctest macros/types
12
13try to forward declare std::string and specialize the string maker for it or something like that
14
15https://github.com/philsquared/Catch/issues/980
16https://github.com/catchorg/Catch2/commit/00af677577973758b3b35e1c94ab4142c45c3f67
17https://github.com/catchorg/Catch2/commit/11f716f28d6621d1e54cf13374f8b5dd1a7489f5
18https://github.com/catchorg/Catch2/commit/22ac9d2184b3868cccfd635eb631d0eee1529121
19https://github.com/catchorg/Catch2/commit/0b1f1b10030942c38ca8c1b95140b0c65efc903e
20
21== when making a new release:
22
23news.ycombinator.com
24isocpp.org
25reddit.com/r/cpp
26reddit.com/r/programming
27reddit.com/r/gamedev
28reddit.com/r/cplusplus
29https://www.linkedin.com/groups/86782/profile
30twitter
31
32
33
34== how to deal with pull requests for the main branch instead of the dev branch
35- http://stackoverflow.com/questions/9135913/merge-pull-request-to-a-different-branch-than-default-in-github
36- git fetch origin pull/ID/head:BRANCHNAME         << BRANCHNAME should be a new local branch! and then rebase it
37
38== other
39- operator<< trouble
40    - see how Catch is implementing their IsStreamInsertable trait for C++11
41    - https://github.com/philsquared/Catch/issues/757
42    - https://github.com/philsquared/Catch/issues/872
43    - https://github.com/philsquared/Catch/pull/877
44    - https://github.com/philsquared/Catch/issues/880
45- toString trouble - https://github.com/philsquared/Catch/issues/741
46- https://github.com/philsquared/Catch/commit/33ed1773f40b406dbf3b7201bf52694bd86b1503
47
48- I suspect -Wsign-compare is not being silenced by the pragmas...
49  see this build - https://travis-ci.org/onqtam/game/jobs/196987454
50  check_eq(numDigits(0), 1);     numDigits returns uint32
51