I can't open C++ project on Unreal Engine 4.14

It says what the problem is right there in the log:

Basically, you reference AGameModeBase::SetPause, but the linker cannot find the implementation for it.
There are two possible cases:

  1. You called it somewhere: remove or substitute that call to see if that solves the problem
  2. You created a child class from AGameModeBase which is missing the SetPause function. Go and implement it in your class.