From 5945ad5c430d8847c77509010cf8a89c7f877f3e Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Sat, 23 Feb 2019 00:24:18 +0000 Subject: [PATCH] Split a long line to avoid annoying horizontal scrolling on a browser. llvm-svn: 354707 --- lld/docs/missingkeyfunction.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lld/docs/missingkeyfunction.rst b/lld/docs/missingkeyfunction.rst index bd3845d895fc..02196becd57a 100644 --- a/lld/docs/missingkeyfunction.rst +++ b/lld/docs/missingkeyfunction.rst @@ -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.