MSC在“//安抚MSC”中的意见是什么意思?

时间:2015-05-11 20:27:16

标签: c++

我偶尔会在C ++评论中遇到// appease MSC,例如here

const int& Array::operator[](int offSet) const
{
  int mysize = GetitsSize();
  if (offSet >= 0 && offSet < GetitsSize())
    return pType[offSet];
  throw xBoundary();
  return pType[offSet]; // to appease MSC!
}

MSC代表什么?

1 个答案:

答案 0 :(得分:1)

作者指微软的编译器,更正式名称为MSVC。