sharkdp / dbg-macro

A dbg(…) macro for C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for containers without begin/end overloads (but begin/end members)

sharkdp opened this issue · comments

This might be a corner-case, but some containers out there do not have a free-function begin(…) and end(…) overloads, only .begin() and .end() member functions.

Even if this is against best practice, it would be great if we could still provide out-of-the-box support for those data types.