include/geometry/number-traits.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Sun, 24 Nov 2019 08:11:18 -0800
changeset 296 c328d7ecf6b8
parent 19 efa14432761a
permissions -rw-r--r--
Comment out explicit typedefs to make GCC happy

#ifndef __NUMBER_TRAITS_H__
#define __NUMBER_TRAITS_H__

template<class NumberType_>
class number_traits
{
	public:
		typedef							NumberType_									NumberType;

		static NumberType&				normalize(NumberType& n)					{ return n; }
};

#endif