acki-m
acki-m
I am curious to see where **RTTR** is used and what task are you solving with it? Please post in which projects you are using it, closed or open source...
One of the biggest use cases of reflection is to have serialization/deserialization functionality. That's why there should be also module available which can do this, so not everybody has to...
What is the current state of the library? Some one reviewed your library: https://www.youtube.com/watch?v=DxP--1yEgKQ&feature=youtu.be&t=2703 I would like to use it with newest compiler. See my previous issue: #97
``` .../nonius-1.1.2/nonius/nonius.h++:1527:34: error: invalid use of incomplete type 'class std::future' return std::async(std::launch::async, [=]{ ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ std::mt19937 rng(seed); ~~~~~~~~~~~~~~~~~~~~~~~ auto resampled = resample(rng, n_resamples, first, last, f); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ return bootstrap(confidence_level, first, last,...
I evaluated several benchmark libraries for C++. Right at the moment I could not find one benchmark library which is really header only. For the next release, I wish you...
The interface for automatically register benchmarks is the following: ``` NONIUS_BENCHMARK("My Benchmark", [](nonius::chronometer meter) { //... }) ``` Because of that it is not possible to use #ifdef inside the...
1) I have a problem on a PC, which is quite fast. A benchmark failed, because it runs too fast. The benchmark basically measure the time of a simple function...
The current release (1.1.0) will bring up again compiler warnings for VSx64. ``` // line 1541, the 'n' variable is std::size_t double outlier_variance = detail::outlier_variance(mean_estimate, stddev_estimate, n); ``` To avoid...
This is a typical benchmark code I use with nonius: ``` nonius::benchmark my_benchmark() { return nonius::benchmark("title", [](nonius::chronometer meter) { // here I do some heavy setup; before actually running the...