mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 12:49:36 -06:00
cmListFileBacktrace: Remove unused "Depth" method
This commit is contained in:
@@ -497,17 +497,6 @@ cmListFileContext const& cmListFileBacktrace::Top() const
|
||||
return this->TopEntry->Context;
|
||||
}
|
||||
|
||||
size_t cmListFileBacktrace::Depth() const
|
||||
{
|
||||
size_t depth = 0;
|
||||
if (Entry const* cur = this->TopEntry.get()) {
|
||||
for (; cur; cur = cur->Parent.get()) {
|
||||
++depth;
|
||||
}
|
||||
}
|
||||
return depth;
|
||||
}
|
||||
|
||||
bool cmListFileBacktrace::Empty() const
|
||||
{
|
||||
return !this->TopEntry;
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
#include "cmConfigure.h" // IWYU pragma: keep
|
||||
|
||||
#include <cstddef>
|
||||
#include <iosfwd>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
@@ -180,9 +179,6 @@ public:
|
||||
// This may be called only if Empty() would return false.
|
||||
cmListFileContext const& Top() const;
|
||||
|
||||
// Get the number of 'frames' in this backtrace
|
||||
size_t Depth() const;
|
||||
|
||||
// Return true if this backtrace is empty.
|
||||
bool Empty() const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user