| 41 | } // namespace |
| 42 | |
| 43 | void OpEnvironment::SetUp() { |
| 44 | op::Op op; |
| 45 | long ret = 0; |
| 46 | op.SetShowErrorMsg(3, &ret); |
| 47 | } |
| 48 | |
| 49 | std::wstring TrimCopy(const std::wstring &value) { |
| 50 | const auto start = value.find_first_not_of(L" \t\r\n"); |
nothing calls this directly
no test coverage detected