FunctionName_Implementation get Visual Studio's Intellisence error

in .h

UFUNCTION(Server)
void ServerTest();

in .cpp

void AActor::ServerTest_Implementation()

This will get the Intellisence error: class AActor has no member “ServerTest_Implementation”.

It compiles perfectly fine, but the error is really bothering me.

And I don’t want to create a declaration of ServerTest_Implementation in the header file, that just not feel right.

Is there a proper way to solve this problem?