Skip to content
Snippets Groups Projects
Commit 38d05d76 authored by Eric Cano's avatar Eric Cano
Browse files

Added namespace specifyers to make code less ambiguous to read.

parent aa0a48e5
No related branches found
No related tags found
No related merge requests found
......@@ -67,13 +67,13 @@ void OStoreDB::setAgent(objectstore::Agent& agent) {
void OStoreDB::assertAgentSet() {
if (!m_agent)
throw AgentNotSet("In OStoreDB::assertAgentSet: Agent pointer not set");
}
}
std::unique_ptr<SchedulerDatabase::TapeMountDecisionInfo>
OStoreDB::getMountInfo() {
//Allocate the getMountInfostructure to return.
assertAgentSet();
std::unique_ptr<TapeMountDecisionInfo> privateRet (new TapeMountDecisionInfo(
std::unique_ptr<OStoreDB::TapeMountDecisionInfo> privateRet (new OStoreDB::TapeMountDecisionInfo(
m_objectStore, *m_agent));
TapeMountDecisionInfo & tmdi=*privateRet;
// Get all the tape pools and tapes with queues (potential mounts)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment