From: Manuel Klimek Date: Mon, 27 May 2013 12:36:28 +0000 (+0000) Subject: Address post-review comment from dblakie. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3778a61acca8ed127ba1b23013ca4c530539247;p=clang Address post-review comment from dblakie. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182732 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Format/UnwrappedLineParser.h b/lib/Format/UnwrappedLineParser.h index bf3db1ea03..c738ef13c6 100644 --- a/lib/Format/UnwrappedLineParser.h +++ b/lib/Format/UnwrappedLineParser.h @@ -120,7 +120,7 @@ public: // up-front. virtual unsigned getPosition() { return 0; } virtual FormatToken setPosition(unsigned Position) { - assert(false); + llvm_unreachable("Interface in transition; do not call!"); return FormatToken(); } };