#include <SigHandlersList.h>
Public Member Functions | |
bool | operator() (const key_type c1_, const key_type c2_) const |
Definition at line 71 of file SigHandlersList.h.
bool ASSA::SigHandlersList::CompSHL::operator() | ( | const key_type | c1_, | |
const key_type | c2_ | |||
) | const [inline] |
Definition at line 72 of file SigHandlersList.h.
00073 { 00074 // This wouldn't fly on 64-bit machines, 'cause ptr size there is 8 bytes long 00075 // return int(c1_) < int(c2_); 00076 // 00077 return (c1_ < c2_); 00078 }