equal
deleted
inserted
replaced
47 /// (The type of objects associated with the keys). |
47 /// (The type of objects associated with the keys). |
48 typedef T Value; |
48 typedef T Value; |
49 |
49 |
50 /// Returns the value associated with the given key. |
50 /// Returns the value associated with the given key. |
51 Value operator[](const Key &) const { |
51 Value operator[](const Key &) const { |
52 return *static_cast<Value *>(0); |
52 return *(static_cast<Value *>(0)+1); |
53 } |
53 } |
54 |
54 |
55 template<typename _ReadMap> |
55 template<typename _ReadMap> |
56 struct Constraints { |
56 struct Constraints { |
57 void constraints() { |
57 void constraints() { |