Skip to content
Snippets Groups Projects
Commit 300fcb5e authored by David Blaikie's avatar David Blaikie
Browse files

Wdeprecated: CommentVerifiers are returned by value, make sure they're correctly copy/moveable

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@244958 91177308-0d34-0410-b5e6-96231b3b80d8
parent f61f0367
No related branches found
No related tags found
No related merge requests found
......@@ -97,6 +97,10 @@ public:
: Current(Comments.begin()), End(Comments.end()), PP(PP)
{ }
CommentVerifier(CommentVerifier &&C) : Current(C.Current), End(C.End), PP(C.PP) {
C.Current = C.End;
}
~CommentVerifier() {
if (Current != End) {
EXPECT_TRUE(Current == End) << "Unexpected comment \""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment