DEBSOURCES
Skip Quicknav
sources / clazy / 1.16-1 / tests / qmap-with-pointer-key / main.cpp
1234567891011121314151617181920
#include <QtCore/QMap> struct A { }; void test() { QMap<A*, int> map; QMap<A, int> map2; }