mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-02 08:46:23 +00:00
Fix Visual Studio 2008 build failure.
Patch by Marius Wachtler git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69637 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
70bc17dbf5
commit
3e3702d00b
@ -1164,9 +1164,9 @@ public:
|
|||||||
void AddVariable(DbgVariable *V) { Variables.push_back(V); }
|
void AddVariable(DbgVariable *V) { Variables.push_back(V); }
|
||||||
|
|
||||||
virtual bool isInlinedSubroutine() { return false; }
|
virtual bool isInlinedSubroutine() { return false; }
|
||||||
virtual unsigned getLine() { assert ( 0 && "Unexpected scope!"); }
|
virtual unsigned getLine() { assert ( 0 && "Unexpected scope!"); return 0; }
|
||||||
virtual unsigned getColumn() { assert ( 0 && "Unexpected scope!"); }
|
virtual unsigned getColumn() { assert ( 0 && "Unexpected scope!"); return 0; }
|
||||||
virtual unsigned getFile() { assert ( 0 && "Unexpected scope!"); }
|
virtual unsigned getFile() { assert ( 0 && "Unexpected scope!"); return 0; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user