Displaying 1 result from an estimated 1 matches for "sourceresolv".
Did you mean:
sourceresolve
2009 Sep 04
1
[LLVMdev] 回复:[LLVMdev] Dose I need to build llvm-gcc front-end from source to resolve this error?
sorry ! I have re-corrected the title.
------------------ 原始邮件 ------------------
发件人: "Sheng Wang"<wansheg at gmail.com>;
发送时间: 2009年9月4日(星期五) 下午3:23
收件人: "LLVMdev"<LLVMdev at cs.uiuc.edu>;
主题: [LLVMdev] Dose I need to build llvm-gcc front-end from sourceresolve this error?
/*
mm.cpp
*/
#include<iostream>
using namespace std;
struct xx{
int x;
int mm()const;
int mm();
};
int xx::mm() const
{
return const_cast<xx*>(this)->mm();
}
int xx::mm()
{
cout<<"ok"<<endl;
return...