include/geometry/number-traits.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Thu, 28 Feb 2013 11:12:02 +0800
branchdev
changeset 272 29306411272b
parent 19 efa14432761a
permissions -rw-r--r--
Dave Millman's fixes to compile with LLVM-based compilers

#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