r182732 - Address post-review comment from dblakie.

Manuel Klimek klimek at google.com
Mon May 27 05:36:28 PDT 2013


Author: klimek
Date: Mon May 27 07:36:28 2013
New Revision: 182732

URL: http://llvm.org/viewvc/llvm-project?rev=182732&view=rev
Log:
Address post-review comment from dblakie.

Modified:
    cfe/trunk/lib/Format/UnwrappedLineParser.h

Modified: cfe/trunk/lib/Format/UnwrappedLineParser.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/UnwrappedLineParser.h?rev=182732&r1=182731&r2=182732&view=diff
==============================================================================
--- cfe/trunk/lib/Format/UnwrappedLineParser.h (original)
+++ cfe/trunk/lib/Format/UnwrappedLineParser.h Mon May 27 07:36:28 2013
@@ -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();
   }
 };





More information about the cfe-commits mailing list