1#include <set>
2
3void f(std::set<int> &v);
4
5int main() {
6 std::set<int> v;
7 f(v);
8}
9

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of lldb/test/API/lang/cpp/incomplete-stl-types/main.cpp