But it's not standard conform as the standard requests that the "this" pointer is dereferenced when a member function is called, even though in some situations nearly no compiler does this.
:codeblks:
@myork the code is sure to work
on common compilers because:
- There are no virtual functions which need access to the vtable.
- There are no data members which could be accessed.
This means that the "this" pointer will not be dereferenced.