NS/releases/valve/source/stlport/test/regression/map1.hpp

11 lines
255 B
C++
Raw Normal View History

// 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;
};