X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=aapl%2Fbubblesort.h;h=bcc2fb6a514c2326e8f2de1746c3ebf7aeffa607;hb=e237915ffcd8149e51a6155b50119cef0a0d5494;hp=f0f4ce5d15f5e55cc714e8c3e6d15b5952dd3aeb;hpb=cbecafa05ae79a40b22882e30e9bf00a18dcfa07;p=external%2Fragel.git diff --git a/aapl/bubblesort.h b/aapl/bubblesort.h index f0f4ce5..bcc2fb6 100644 --- a/aapl/bubblesort.h +++ b/aapl/bubblesort.h @@ -72,7 +72,7 @@ template void BubbleSort:: changed = false; for ( long i = 0; i < len-pass; i++ ) { /* Do we swap pos with the next one? */ - if ( this->compare( data[i], data[i+1] ) > 0 ) { + if ( compare( data[i], data[i+1] ) > 0 ) { char tmp[sizeof(T)]; /* Swap the two items. */