Sergey Panin

Results 7 issues of Sergey Panin

Hi all! I have a code. ` func xxx (x int) { if (x != 1) { log.Fatalf("Fatal msg") } } ` Now I can't catch it, it'd be great...

enhancement

The TreeView component works fine, but if I create 100+ nested items, then the collapse time takes a long time. How can I improve this behaviour?

I've uncovered that only gcc 7.1 compile the library. (maybe previous versions of the compiler carried out that code too) But how about clang and VS I've tried: clang 4.0...

The best solution to test the big numbers is [primality test](https://en.wikipedia.org/wiki/Primality_test) (in Russian some links) - [Тест простоты](https://ru.wikipedia.org/wiki/Тест_простоты) - [Решето Эратосфена](http://e-maxx.ru/algo/eratosthenes_sieve) - [тест BPSW на простоту чисел](http://e-maxx.ru/algo/bpsw) It will be...

I've found some errors. And I wrote a new test function ``` static inline void testBigNumbers() { uint128_t a1 = std::numeric_limits::max() * 1; assert2(a1, std::numeric_limits::max()); // Ok a1 = std::numeric_limits::max()...

I've found out that the embedded сomparison functions are declared as a noexcept but all external are implemented without the noexcept keyword. for instance (only parts of code) > template...

hi The model works fine but only on the first level and does not include children. I use a tree structure and the proxy model only works with the top...