[llvm-commits] [llvm] r41378 - in /llvm/trunk: include/llvm/ADT/APFloat.h lib/CodeGen/SelectionDAG/SelectionDAG.cpp lib/Support/APFloat.cpp lib/VMCore/Constants.cpp
Chris Lattner
clattner at apple.com
Fri Aug 24 16:49:55 PDT 2007
>> The difference here is that C++ compilers automatically synthesis
>> copy ctors and default ctors and operator=, but they don't do the
>> same for operator==. To disable these automatically generated
>> members, you have to "define" them, and put them in the private part
>> of the class (so any users will get compile-time access violation
>> errors as well as link errors).
>
> Still learning that language. OK then, I'll comment it out.
Not a big deal. Thanks Dale!
-Chris
More information about the llvm-commits
mailing list