[lld] r354707 - Split a long line to avoid annoying horizontal scrolling on a browser.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 22 16:24:19 PST 2019


Author: ruiu
Date: Fri Feb 22 16:24:18 2019
New Revision: 354707

URL: http://llvm.org/viewvc/llvm-project?rev=354707&view=rev
Log:
Split a long line to avoid annoying horizontal scrolling on a browser.

Modified:
    lld/trunk/docs/missingkeyfunction.rst

Modified: lld/trunk/docs/missingkeyfunction.rst
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/docs/missingkeyfunction.rst?rev=354707&r1=354706&r2=354707&view=diff
==============================================================================
--- lld/trunk/docs/missingkeyfunction.rst (original)
+++ lld/trunk/docs/missingkeyfunction.rst Fri Feb 22 16:24:18 2019
@@ -4,7 +4,8 @@ Missing Key Function
 If your build failed with a linker error something like this::
 
   foo.cc:28: error: undefined reference to 'vtable for C'
-  the vtable symbol may be undefined because the class is missing its key function (see https://lld.llvm.org/missingkeyfunction)
+  the vtable symbol may be undefined because the class is missing its key function
+  (see https://lld.llvm.org/missingkeyfunction)
 
 it's likely that your class C has a key function (defined by the ABI as the first
 non-pure, non-inline, virtual function), but you haven't actually defined it.




More information about the llvm-commits mailing list