Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * This file is part of the cvc5 project. 3 : : * 4 : : * Copyright (c) 2009-2026 by the authors listed in the file AUTHORS 5 : : * in the top-level source directory and their institutional affiliations. 6 : : * All rights reserved. See the file COPYING in the top-level source 7 : : * directory for licensing information. 8 : : * **************************************************************************** 9 : : * 10 : : * The default CleanUp class that does nothing. 11 : : */ 12 : : 13 : : #include "cvc5_public.h" 14 : : 15 : : #ifndef CVC5__CONTEXT__DEFAULT_CLEAN_UP_H 16 : : #define CVC5__CONTEXT__DEFAULT_CLEAN_UP_H 17 : : 18 : : #include <vector> 19 : : 20 : : namespace cvc5::context { 21 : : 22 : : template <class T> 23 : : class DefaultCleanUp 24 : : { 25 : : public: 26 : 140832626 : void operator()(typename std::vector<T>::reference) const {} 27 : : }; 28 : : 29 : : } // namespace cvc5 30 : : 31 : : #endif /* CVC5__CONTEXT__DEFAULT_CLEAN_UP_H */