Line 55 is your body: void takeTurns(bool winCheck(), int player)
note the different parameters: bool(), int
Lose the parenthesis one line 55, 57, and 62.
You use the parenthesis to call a function. takeTurns is not calling a function, it's just using the boolean value that was passed to it. The winCheck function was already called by main.