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