Displaying 1 result from an estimated 1 matches for "friendclass".
Did you mean:
frienclass
2011 Aug 09
1
[LLVMdev] Debug information for llvm-clang
...onality for clang : DIBuilder,CGDebugInfo,DwarfDebug
classes in the clang.
They generate wide spectrum of data (For example I saw for Class type - base
classes /inheritance/friends etc.)
i want to see all the data for debugging after clang is executed..To check
this I made following example
class friendClass
{
public:
int x;
};
class classBase
{
public:
int get1(){return 1;}
int get2(){return 2;}
};
class classDer:public classBase
{
public:
int get1(){return 1;}
friend class frienClass;
};
int f()
{
classDer x;
return x.get1();
}
After C:\Windows\system32>clang C:\clangParam\clangExample....