Files
42_INT_09_piscine_cpp/d07/ex01/headers/Decrement.hpp
2022-03-10 19:12:00 +01:00

14 lines
152 B
C++

#ifndef DECREMENT_HPP
# define DECREMENT_HPP
# include <iostream>
# include <string>
template< typename T >
void Decrement(T & e) {
--e;;
}
#endif