Displaying 1 result from an estimated 1 matches for "1611cdf8".
2015 May 15
2
[LLVMdev] Clang question on x86-64 class type definitions
Hi All,
I have a question on the type definitions that Clang generates when compiling for x86-64.  Here is the C++ code that I compile:
                class TestClass1 {
                                int X;
                public:
                                virtual int Foo() { return 1; }
                };
                class TestClass2 : public TestClass1 {