| 47 | struct { bool ok; const char* msg; } res[3]; |
| 48 | unsigned i; |
| 49 | void ok(bool isOk, const char *msg) { |
| 50 | assert(i < sizeof(res)/sizeof(res[0])); |
| 51 | res[i].ok = isOk; |
| 52 | res[i].msg = msg; |
| 53 | ++i; |
| 54 | } |
| 55 | }; |
| 56 | |
| 57 | NAN_METHOD(thread_local_storage) { |
no outgoing calls
no test coverage detected