diff options
author | Sage Weil <sage@newdream.net> | 2010-04-08 18:09:43 +0200 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-04-08 18:09:43 +0200 |
commit | df2422f3647b4ca53653305b9352a6d1f81eeda1 (patch) | |
tree | d38148812f2a2fa8ccfec6e94d8a2cb3cc39444b /src/common/BackTrace.cc | |
parent | crc32c: prefix with ceph_ (diff) | |
download | ceph-df2422f3647b4ca53653305b9352a6d1f81eeda1.tar.xz ceph-df2422f3647b4ca53653305b9352a6d1f81eeda1.zip |
assert: use ceph namespace
Diffstat (limited to 'src/common/BackTrace.cc')
-rw-r--r-- | src/common/BackTrace.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/BackTrace.cc b/src/common/BackTrace.cc index aca8e004acf..e8a7542d039 100644 --- a/src/common/BackTrace.cc +++ b/src/common/BackTrace.cc @@ -6,6 +6,8 @@ #include "BackTrace.h" +namespace ceph { + void BackTrace::print(std::ostream& out) { for (size_t i = skip; i < size; i++) { @@ -51,3 +53,4 @@ void BackTrace::print(std::ostream& out) } }; +} |