Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
vczh committed Feb 11, 2020
1 parent 5086aa6 commit 5d09dae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tools/CppDoc/Core/Source/Parser_Expr.cpp
Expand Up @@ -886,7 +886,7 @@ Ptr<Expr> ParseBinaryExpr(const ParsingArguments& pa, const ParsingExprArguments
{
binaryStack[binaryStack.Count() - 1]->right = newExpr;
}
binaryStack.Add(newExpr);
popped = newExpr;
}
return binaryStack.Count() > 0 ? Ptr<Expr>(binaryStack[0]) : popped;
}
Expand Down
Expand Up @@ -22,7 +22,7 @@ TEST_FILE

ASSERT_OVERLOADING_VERBOSE(
(MakeTuple<>() << 1 << 1. << 1.f << 'x' << L'x' << true),
L"((MakeTuple<>() << (MakeTuple<>() << (MakeTuple<>() << (MakeTuple<>() << (MakeTuple<>() << (MakeTuple<>() << true)))))))",
L"(((((((MakeTuple<>() << 1) << 1.) << 1.f) << 'x') << L'x') << true))",
L"::Tuple<{__int32 $PR, double $PR, float $PR, char $PR, wchar_t $PR, bool $PR}> $PR",
MakeTuple<int, double, float, char, wchar_t, bool>
);
Expand Down

0 comments on commit 5d09dae

Please sign in to comment.