diff options
author | Justin Berger <j.david.berger@gmail.com> | 2017-07-23 00:34:33 (GMT) |
---|---|---|
committer | Justin Berger <j.david.berger@gmail.com> | 2017-11-01 17:32:11 (GMT) |
commit | 39c2feaf8c4dcb9c3a30c68a066fb70e126d7fe6 (patch) | |
tree | 1023429578ddc402c663d8e29a2ef2341a9c382a /Source/cmListFileCache.h | |
parent | f5d2988ea7cc60778dbaa21860aad264c7aa7a81 (diff) | |
download | CMake-39c2feaf8c4dcb9c3a30c68a066fb70e126d7fe6.zip CMake-39c2feaf8c4dcb9c3a30c68a066fb70e126d7fe6.tar.gz CMake-39c2feaf8c4dcb9c3a30c68a066fb70e126d7fe6.tar.bz2 |
misc: Added utility method to allow working with stacks
Diffstat (limited to 'Source/cmListFileCache.h')
-rw-r--r-- | Source/cmListFileCache.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h index 349ddef..1f9e374 100644 --- a/Source/cmListFileCache.h +++ b/Source/cmListFileCache.h @@ -6,6 +6,7 @@ #include "cmConfigure.h" // IWYU pragma: keep #include <iosfwd> +#include <stddef.h> #include <string> #include <vector> @@ -138,6 +139,9 @@ public: // Print the call stack below the top of the backtrace. void PrintCallStack(std::ostream& out) const; + // Get the number of 'frames' in this backtrace + size_t Depth() const; + private: struct Entry; |