From 8d2a11dc86f5eb0e8db2d1a88e58a562f1e07a9c Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Thu, 15 Jan 2015 20:12:46 +0100 Subject: Extracted basic math operations into separate header --- src/operation.h | 54 ------------------------------------------------------ 1 file changed, 54 deletions(-) delete mode 100644 src/operation.h (limited to 'src/operation.h') diff --git a/src/operation.h b/src/operation.h deleted file mode 100644 index 2f3b747..0000000 --- a/src/operation.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef TYPEASVALUE_SRC_OPERATION_H_ -#define TYPEASVALUE_SRC_OPERATION_H_ - -#include "type.h" - -namespace tav { - -template < - typename X, - typename Y -> -struct add { - typedef std::integral_constant< - decltype(X::value + Y::value), - X::value + Y::value - > type; -}; - -template < - typename X, - typename Y -> -struct substract { - typedef std::integral_constant< - decltype(X::value - Y::value), - X::value - Y::value - > type; -}; - -template < - typename X, - typename Y -> -struct multiply { - typedef std::integral_constant< - decltype(X::value * Y::value), - X::value * Y::value - > type; -}; - -template < - typename X, - typename Y -> -struct divide { - typedef std::integral_constant< - decltype(X::value / Y::value), - X::value / Y::value - > type; -}; - -} - -#endif // TYPEASVALUE_SRC_OPERATION_H_ -- cgit v1.2.3