Guest User

Untitled

a guest
Jul 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public typeof(this) opPostInc(T = int)(T unused = 0) {
  2. static assert(
  3. is(typeof(swigOpInc(int.init))),
  4. "opPostInc called on " ~ typeof(this).stringof ~ ", but no postfix " ~
  5. "increment operator exists in the corresponding C++ class."
  6. );
  7. return swigOpInc(int.init);
  8. }
Add Comment
Please, Sign In to add comment