| 63 | } |
| 64 | |
| 65 | constexpr Y_FORCE_INLINE TStaticBuf StripRoot(const TStaticBuf& f, unsigned prefixLength) noexcept { |
| 66 | return TStaticBuf(f.Data + prefixLength, f.Len - prefixLength); |
| 67 | } |
| 68 | |
| 69 | //$(SRC_ROOT)/prj/blah.cpp -> prj/blah.cpp |
| 70 | constexpr Y_FORCE_INLINE TStaticBuf StripRoot(const TStaticBuf& f) noexcept { |
nothing calls this directly
no test coverage detected