Fix Visual Studio 2008 build failure.

Patch by Marius Wachtler

llvm-svn: 69637
This commit is contained in:
Devang Patel 2009-04-21 00:08:56 +00:00
parent 44ea0b2e0e
commit 7f413cb05f
1 changed files with 3 additions and 3 deletions

View File

@ -1164,9 +1164,9 @@ public:
void AddVariable(DbgVariable *V) { Variables.push_back(V); }
virtual bool isInlinedSubroutine() { return false; }
virtual unsigned getLine() { assert ( 0 && "Unexpected scope!"); }
virtual unsigned getColumn() { assert ( 0 && "Unexpected scope!"); }
virtual unsigned getFile() { assert ( 0 && "Unexpected scope!"); }
virtual unsigned getLine() { assert ( 0 && "Unexpected scope!"); return 0; }
virtual unsigned getColumn() { assert ( 0 && "Unexpected scope!"); return 0; }
virtual unsigned getFile() { assert ( 0 && "Unexpected scope!"); return 0; }
};