X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fmoof%2Fcml%2Ffixed.h;fp=src%2Fmoof%2Fcml%2Ffixed.h;h=0000000000000000000000000000000000000000;hb=6b0a0d0efafe34d48ab344fca3b479553bd4e62c;hp=536eb3ca3227550869395b2be621c6ed6863237a;hpb=85783316365181491a3e3c0c63659972477cebba;p=chaz%2Fyoink diff --git a/src/moof/cml/fixed.h b/src/moof/cml/fixed.h deleted file mode 100644 index 536eb3c..0000000 --- a/src/moof/cml/fixed.h +++ /dev/null @@ -1,42 +0,0 @@ -/* -*- C++ -*- ------------------------------------------------------------ - -Copyright (c) 2007 Jesse Anders and Demian Nave http://cmldev.net/ - -The Configurable Math Library (CML) is distributed under the terms of the -Boost Software License, v1.0 (see cml/LICENSE for details). - - *-----------------------------------------------------------------------*/ -/** @file - * @brief - */ - -#ifndef fixed_h -#define fixed_h - -namespace cml { - - -/** This is a selector for fixed 1D and 2D arrays. - * - * The fixed<> struct is used only to select a 1D or 2D array as the base - * class of a vector or matrix. The rebind<> template is used by - * quaternion<> to select its vector length in a generic way. - * - * @sa dynamic - * @sa external - */ -template struct fixed { - - /** Rebind to a 1D type. - * - * This is used by quaternion<>. - */ - template struct rebind { typedef fixed other; }; -}; - -} // namespace cml - -#endif - -// ------------------------------------------------------------------------- -// vim:ft=cpp