Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/bits/algorithms.h

    re1e8408 rde737c8  
    112112static inline void __libcfa_small_sortN( void* * arr, size_t dim );
    113113
    114 forall( dtype T )
    115 static inline void __libcfa_small_sort( T* * arr, size_t dim ) {
     114forall( otype T | {  int ?<?( T, T ); int ?>?( T, T ); } )
     115static inline void __libcfa_small_sort( T * arr, size_t dim ) {
    116116        switch( dim ) {
    117117                case 1 : return;
Note: See TracChangeset for help on using the changeset viewer.