00001 #ifndef COMMONS_ALGO_H
00002 #define COMMONS_ALGO_H
00003
00004 #include <sys/types.h>
00005
00006 namespace commons {
00007
00008 void swap(size_t &x, size_t &y) {
00009 x = x ^ y;
00010 y = x ^ y;
00011 x = x ^ y;
00012 }
00013
00014 }
00015
00016 #endif