Skip to content
Snippets Groups Projects
Commit a654551e authored by Matthew McGill's avatar Matthew McGill
Browse files

Made getter methods const

Former-commit-id: a33ce1985f65b03d9b559ce0213b5ec88bccbf79
parent 648c2b0f
Branches
Tags
No related merge requests found
...@@ -28,17 +28,17 @@ class Provenance_t ...@@ -28,17 +28,17 @@ class Provenance_t
prov.set((size_t) ProvType::IndCall); prov.set((size_t) ProvType::IndCall);
} }
bool hasReturn() bool hasReturn() const
{ {
return prov.test((size_t) ProvType::Ret); return prov.test((size_t) ProvType::Ret);
} }
bool hasIndirectJump() bool hasIndirectJump() const
{ {
return prov.test((size_t) ProvType::IndJump); return prov.test((size_t) ProvType::IndJump);
} }
bool hasIndirectCall() bool hasIndirectCall() const
{ {
return prov.test((size_t) ProvType::IndCall); return prov.test((size_t) ProvType::IndCall);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment