Files
swift-mirror/test/Interop/Cxx/stdlib/Inputs/std-set.h

11 lines
256 B
C++

#ifndef TEST_INTEROP_CXX_STDLIB_INPUTS_STD_SET_H
#define TEST_INTEROP_CXX_STDLIB_INPUTS_STD_SET_H
#include <set>
using SetOfCInt = std::set<int>;
inline SetOfCInt initSetOfCInt() { return {1, 5, 3}; }
#endif // TEST_INTEROP_CXX_STDLIB_INPUTS_STD_SET_H