RPC warning after updating to 4.7

Hi!

If I have a method like this:

UFUNCTION(Reliable, Server, WithValidation)
 void Test();

After updating to the 4.7 I get the following warning:

warning C4996: Function TestUObject::Test needs native implementation by virtual void Test_Implementation() due to its properties. Currently Test_Implementation declaration is autogenerated by UHT. Since next release you'll have to provide declaration on your own. Please update your code before upgrading to the next release, otherwise your project will no longer compile.

What should the new syntax look like?

Hey,

Have a look there:

and there:

Cheers

Cedric

Thanks a lot!