I like the relay feature for Visual Studio 2015, except for one thing. It automatically inserts a keyword inlinebefore defining a function. Therefore, I always had to delete them myself.
This is true.
Before refactoring.
class GameLoop
{
public:
void drawGame() {
}
};
After refactoring (location of the move definition)
class GameLoop
{
public:
void drawGame();
};
inline void GameLoop::drawGame() {
}
Does anyone know how to disable this auto keyword inline?
Thank.
Who does not know where this function is.
or
- Press Ctrl +. shortcut and select Move definition location