Fix final linking errors

llvm-svn: 6707
This commit is contained in:
Chris Lattner 2003-06-16 12:27:12 +00:00
parent 0834ee4d98
commit 94c348f7d3
2 changed files with 3 additions and 6 deletions

View File

@ -10,10 +10,7 @@ struct bar : public foo {
bar();
};
//int bar::X() { return 0; }
bar::bar() {
}
bar::bar() { }
foo::foo() { }
int main() { return 0; }

View File

@ -1,4 +1,4 @@
void bar();
void bar(){}
void foo() {
struct TEST {