include/geometry/number-traits.h
author Dmitriy Morozov <morozov@cs.duke.edu>
Sat, 01 Mar 2008 04:48:49 -0500
branchar
changeset 82 167a93cca2e2
parent 19 efa14432761a
permissions -rw-r--r--
Marked #c66 and #d2a as fixed (fixes in f236c7d659d0 and abba2950aced, respectively)

#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