Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::StackChecker< RECURSIVE_CLASS > Class Template Reference

Public Member Functions

 StackChecker (RECURSIVE_CLASS &recursive_class_p, idx_t stack_usage_p)
 
 StackChecker (StackChecker &&other) noexcept
 
 StackChecker (const StackChecker &)=delete
 

Private Attributes

RECURSIVE_CLASSrecursive_class
 
idx_t stack_usage
 

Constructor & Destructor Documentation

◆ StackChecker() [1/2]

template<class RECURSIVE_CLASS >
duckdb::StackChecker< RECURSIVE_CLASS >::StackChecker ( RECURSIVE_CLASS recursive_class_p,
idx_t  stack_usage_p 
)
inline
720 : recursive_class(recursive_class_p), stack_usage(stack_usage_p) {
721 recursive_class.stack_depth += stack_usage;
722 }

◆ ~StackChecker()

723 {
724 recursive_class.stack_depth -= stack_usage;
725 }

◆ StackChecker() [2/2]

template<class RECURSIVE_CLASS >
duckdb::StackChecker< RECURSIVE_CLASS >::StackChecker ( StackChecker< RECURSIVE_CLASS > &&  other)
inlinenoexcept
727 : recursive_class(other.recursive_class), stack_usage(other.stack_usage) {
728 other.stack_usage = 0;
729 }

The documentation for this class was generated from the following file: