| 31 | Vector() {} |
| 32 | |
| 33 | static std::vector<int> getInts() { |
| 34 | std::vector<int> a {{ 13, 21, 34 }}; |
| 35 | |
| 36 | return(a); |
| 37 | } |
| 38 | |
| 39 | static std::vector<int> callWithInts(nbind::cbFunction &callback, std::vector<int> a) { |
| 40 | return(callback.call<std::vector<int>>(a)); |
nothing calls this directly
no outgoing calls
no test coverage detected