include/geometry/number-traits.h
author Dmitriy Morozov <morozov@cs.duke.edu>
Wed, 19 Mar 2008 12:43:33 -0400
branchdev
changeset 51 0a18d6902a55
parent 19 efa14432761a
permissions -rw-r--r--
Fixed CGAL assertion failures in alphashapes (explicitly checking for infinite simplices)

#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