[LLVMbugs] [Bug 17583] New: Reference to non-existing function in llvm/tools/clang/lib/AST/InheritViz.cpp

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Mon Oct 14 16:48:11 PDT 2013


http://llvm.org/bugs/show_bug.cgi?id=17583

            Bug ID: 17583
           Summary: Reference to non-existing function in
                    llvm/tools/clang/lib/AST/InheritViz.cpp
           Product: clang
           Version: unspecified
          Hardware: Macintosh
                OS: MacOS X
            Status: NEW
          Severity: release blocker
          Priority: P
         Component: C++
          Assignee: unassignedclangbugs at nondot.org
          Reporter: danielux at me.com
                CC: dgregor at apple.com, llvmbugs at cs.uiuc.edu
    Classification: Unclassified

LLVM compilation fails with this message:


llvm[4]: Compiling InheritViz.cpp for Debug+Asserts build
/Users/danielux/Builds/llvm/tools/clang/lib/AST/InheritViz.cpp:141:29: error:
incomplete type 'llvm::sys::Path' named in nested name specifier
  sys::Path Filename = sys::Path::GetTemporaryDirectory(&ErrMsg);
                       ~~~~~^~~~~~
/Users/danielux/Builds/llvm/tools/clang/lib/AST/../../include/clang/Basic/FileManager.h:38:23:
note: forward declaration of 'llvm::sys::Path'
namespace sys { class Path; }
                      ^
/Users/danielux/Builds/llvm/tools/clang/lib/AST/InheritViz.cpp:141:13: error:
variable has incomplete type 'sys::Path'
  sys::Path Filename = sys::Path::GetTemporaryDirectory(&ErrMsg);
            ^
/Users/danielux/Builds/llvm/tools/clang/lib/AST/../../include/clang/Basic/FileManager.h:38:23:
note: forward declaration of 'llvm::sys::Path'
namespace sys { class Path; }
                      ^
2 errors generated.


After looking in the source code, it seems GetTemporaryDirectory doesn't exist
but it was part of a former release.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20131014/e6985a43/attachment.html>


More information about the llvm-bugs mailing list