[llvm] r236345 - Fix compilation of PDBApiTest.

Zachary Turner zturner at google.com
Fri May 1 13:51:49 PDT 2015


Author: zturner
Date: Fri May  1 15:51:49 2015
New Revision: 236345

URL: http://llvm.org/viewvc/llvm-project?rev=236345&view=rev
Log:
Fix compilation of PDBApiTest.

Modified:
    llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp

Modified: llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp?rev=236345&r1=236344&r2=236345&view=diff
==============================================================================
--- llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp (original)
+++ llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp Fri May  1 15:51:49 2015
@@ -74,7 +74,7 @@ class MockSession : public IPDBSession {
   }
 
   std::unique_ptr<PDBSymbol>
-  findSymbolByAddress(uint64_t Address) const override {
+  findSymbolByAddress(uint64_t Address, PDB_SymType Type) const override {
     return nullptr;
   }
   std::unique_ptr<IPDBEnumLineNumbers>





More information about the llvm-commits mailing list