| 30 | } |
| 31 | |
| 32 | Maybe<void> SetDefaultSessionId(int64_t val) { |
| 33 | std::vector<int64_t>* ids = RegsiteredSessionIds(); |
| 34 | ids->emplace_back(val); |
| 35 | return Maybe<void>::Ok(); |
| 36 | } |
| 37 | |
| 38 | } // namespace |
| 39 |
nothing calls this directly
no test coverage detected