Attempted workaround for MSVC compile error

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103358 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Douglas Gregor 2010-05-08 22:24:24 +00:00
Родитель eaa18e449b
Коммит 1f10962edd
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -134,6 +134,13 @@ public:
explicit FullExprArg(ExprArg expr)
: Expr(move(expr)) {}
#if defined(_MSC_VER)
// Last tested with Visual Studio 2008.
// Visual C++ complains about the operator= above, claiming that Expr
// is not accessible.
public:
#endif
ExprArg Expr;
};