Skip to content

Commit

Permalink
fix return type in Statistics::lookup method
Browse files Browse the repository at this point in the history
Change-Id: Ide0b7382e607c97411868035c52c908895fbdcb0
Reviewed-on: https://gerrit.dechocorp.com/29163
Reviewed-by: Jeremy Stanley <jeremy@mozy.com>
Reviewed-by: Kevin Cai <kcai@vmware.com>
  • Loading branch information
Wen Zhao committed Feb 9, 2012
1 parent d51ecea commit d354346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mordor/statistics.h
Expand Up @@ -312,7 +312,7 @@ class Statistics
} else {
T *stat = dynamic_cast<T *>(it->second.second.get());
MORDOR_ASSERT(stat);
return *stat;
return stat;
}
}

Expand Down

0 comments on commit d354346

Please sign in to comment.