Mikhail Demchenko

Results 2 issues of Mikhail Demchenko

The ```std::iterator``` class template is depricated ([LINK1](https://en.cppreference.com/w/cpp/iterator/iterator), [LINK2](https://stackoverflow.com/questions/43268146/why-is-stditerator-deprecated)) in C++17 and may be removed from future releases of C++ standard. Plase remove inheritance from ```Tins::SnifferIterator``` at: https://github.com/mfontanini/libtins/blob/3659d89c257676da6e6ddf6298252aecc5756bdb/include/tins/sniffer.h#L452 If You still...

If function defined like: ``` function foo(t) local name = t.name or "other" local num = t.num or 1 --Stuf end ``` Then it will raise an error when called...