]> Dogcows Code - chaz/yoink/blobdiff - src/cml/core/meta/if.h
extreme refactoring
[chaz/yoink] / src / cml / core / meta / if.h
diff --git a/src/cml/core/meta/if.h b/src/cml/core/meta/if.h
deleted file mode 100644 (file)
index 1ea3235..0000000
+++ /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 meta_if_h
-#define meta_if_h
-
-#include <cml/core/meta/common.h>
-
-namespace cml {
-
-/** Select argument type based upon truth value. */
-template<bool yn, typename TrueT, typename FalseT> struct select_if;
-
-/** Result is TrueT if true. */
-template<typename TrueT, typename FalseT>
-struct select_if<true,TrueT,FalseT> {
-    typedef TrueT result;
-    enum { is_true = true };
-};
-
-/** Result is FalseT if false. */
-template<typename TrueT, typename FalseT>
-struct select_if<false,TrueT,FalseT> {
-    typedef FalseT result;
-    enum { is_true = false };
-};
-
-} // namespace cml
-
-#endif
-
-// -------------------------------------------------------------------------
-// vim:ft=cpp
This page took 0.025017 seconds and 4 git commands to generate.