diff options
author | Adrian McCarthy <amccarth@google.com> | 2017-06-22 18:42:23 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2017-06-22 18:42:23 +0000 |
commit | 6a4b080a5f10f873e163eb526e499a75accea3a2 (patch) | |
tree | a548408d6e9a9bd0c3034a99247d587e6c5c8b8e /llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | |
parent | 41a34e411164468818aad59000f41fce9ccbe018 (diff) | |
download | bcm5719-llvm-6a4b080a5f10f873e163eb526e499a75accea3a2.tar.gz bcm5719-llvm-6a4b080a5f10f873e163eb526e499a75accea3a2.zip |
Make IPDBSession::getGlobalScope a non-const method
There doesn't seem to be a compelling reason why this method should be const
other than it was possible with the DIA implementation. The native session
is going to act as a symbol factory and cache. This could be acheived with
mutable (and the existing const_cast), but it seems cleaner to accept that
this method affects the state of the session.
This change eliminates an existing const_cast.
llvm-svn: 306041
Diffstat (limited to 'llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp')
-rw-r--r-- | llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp index 6afe83cd90d..257a8879e43 100644 --- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -63,9 +63,7 @@ namespace { class MockSession : public IPDBSession { uint64_t getLoadAddress() const override { return 0; } void setLoadAddress(uint64_t Address) override {} - std::unique_ptr<PDBSymbolExe> getGlobalScope() const override { - return nullptr; - } + std::unique_ptr<PDBSymbolExe> getGlobalScope() override { return nullptr; } std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const override { return nullptr; } |