acki-m

Results 40 comments of acki-m

please merge: https://github.com/arximboldi/immer/pull/68

I was actually planing to replace your lib with google benchmark, because it didn't compile anymore with the newest compilers, so I could not use the benchmarks at all. But...

1) I wanted to measure the cost of a single void member function. Unfortunately I defined the function directly in the class declaration, so the function call was in fact...

I have published my library [RTTR](https://github.com/rttrorg/rttr/), where I use nonius to benchmarks certain calls: https://github.com/rttrorg/rttr/tree/master/src/benchmarks Try to run the bench_method executable, there you can see the artefacts yourself. I saw...

what is the current state Martinho? I would really get rid of the boost dependency with nonius, at least for linux builds...

I can even run an empty benchmark with this kind of setup: ``` nonius::benchmark my_benchmark() { return nonius::benchmark("title", [](nonius::chronometer meter) { std::vector foo(1000000); meter.measure([&]() { }); }); } ``` The...

Why did you not use travis-ci? I have not looked into this tool, but its good to know whether there are some drawbacks.

How are you using the registration process? Are you using it with a plugin system? Because ideally every type should be registered when you enter the `main()` function

With the new visitor, this might be possible. Because you will get access to the raw function pointers and property members. But I have not looked into emscripten to much...

How does this leads to a crash?