[LLVMbugs] [Bug 13300] compile failures building 'darkradiant 1.7.1'

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Mon Jul 9 07:35:29 PDT 2012


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

Douglas Gregor <dgregor at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID

--- Comment #1 from Douglas Gregor <dgregor at apple.com> 2012-07-09 09:35:29 CDT ---
Clang is correct to reject this code. As Clang is pointing out,
'boost::python::object' can actually refer to two different things, either

namespace boost { namespace python { class object; } }

or

namespace boost { namespace python { 
  namespace api {
    class object; 
  }
  using api::object
} }

GCC is wrong to accept this code in the first place.

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.



More information about the llvm-bugs mailing list