aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flsupport.h
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/source/flsupport.h')
-rw-r--r--externals/grill/flext/source/flsupport.h26
1 files changed, 9 insertions, 17 deletions
diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h
index 329c147f..060da5d9 100644
--- a/externals/grill/flext/source/flsupport.h
+++ b/externals/grill/flext/source/flsupport.h
@@ -157,6 +157,15 @@ public:
//! Sleep for an amount of time
static void Sleep(double s);
+
+ /*! \brief Fold value to a number of bits
+ \remark Good for hash generation
+ */
+ static int FoldBits(unsigned long h,int bits);
+
+ //! \brief How many bits are necessary to represent n
+ static int Int2Bits(unsigned long n);
+
//! @} FLEXT_S_UTIL
// --- various symbols --------------------------------------------
@@ -407,23 +416,6 @@ public:
//! @} FLEXT_S_ATOM
-// --- utilities ------------------------------------------------
-
- /*! \defgroup FLEXT_S_UTIL Flext utility functions
- @{
- */
-
- /*! \brief Fold value to a number of bits
- \remark Good for hash generation
- */
- static int FoldBits(unsigned long h,int bits);
-
- //! \brief How many bits are necessary to represent n
- static int Int2Bits(unsigned long n);
-
-//! @} FLEXT_S_UTIL
-
-
// --- clock stuff ------------------------------------------------