Files
FC1/STLPORT/test/regression/map1.hpp
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

11 lines
245 B
C++

// class Int is defined here because the primitive 'int' does not have a
// default constructor. The default constructor is used when map['z']
// accesses an uninitialized element.
struct Int
{
Int(int x = 0) : val(x) {};
int val;
};