small clean up of the files

This commit is contained in:
hugogogo
2022-06-29 14:42:03 +02:00
parent eeb3c7dfc0
commit 38804caea9
17 changed files with 0 additions and 836 deletions

View File

@@ -1,22 +0,0 @@
#ifndef TESTS_MUTANT_STACK_HPP
# define TESTS_MUTANT_STACK_HPP
#include <stack>
template <typename T>
class MutantStack : public std::stack<T> {
public:
typedef typename std::stack<T>::container_type::iterator iterator;
typedef typename std::stack<T>::container_type::const_iterator const_iterator;
iterator begin() {return this->c.begin();}
iterator end() {return this->c.end();}
const_iterator begin() const {return this->c.begin();}
const_iterator end() const {return this->c.end();}
};
#endif