You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, it is not possible to increment a pointer encapsulated in a val, e.g., auto ptrPlus4 = ptr + 4.
It is however to use auto ptrPlus4 = ptr + nautilus::val<uint64_t>(4).
Nautilus should support both cases.