Push the key on to the stack.
| 37 | public: |
| 38 | // Push the key on to the stack. |
| 39 | explicit context(Key* k) |
| 40 | : key_(k), |
| 41 | next_(call_stack<Key, Value>::top_) |
| 42 | { |
| 43 | value_ = reinterpret_cast<unsigned char*>(this); |
| 44 | call_stack<Key, Value>::top_ = this; |
| 45 | } |
| 46 | |
| 47 | // Push the key/value pair on to the stack. |
| 48 | context(Key* k, Value& v) |
no outgoing calls
no test coverage detected