This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/dm/stlport/test/regression/map1.hpp

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