14 lines
152 B
C++
14 lines
152 B
C++
#ifndef DECREMENT_HPP
|
|
# define DECREMENT_HPP
|
|
|
|
# include <iostream>
|
|
# include <string>
|
|
|
|
template< typename T >
|
|
void Decrement(T & e) {
|
|
--e;;
|
|
}
|
|
|
|
#endif
|
|
|