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