错误c2146:语法错误

时间:2012-01-03 14:08:02

标签: c++ visual-studio-2008

Vector2D mob::Seek(Vector2D target)
{
   Vector2D Velo;
   Vector2D Accn;
   Velo = (target – m_pos).unitVector();///here is where its pointing
   Accn = Velo-m_Velo;
   return Accn;
}
  

错误2错误C2146:语法错误:在标识符之前缺少')'   ' - 'l:\ bmb \ bot.cpp 316 bmb

这个想法出错了吗?

1 个答案:

答案 0 :(得分:1)

你似乎已经以某种方式得到了你的减号运算符应该是的短划线。