Guest User

Untitled

a guest
Aug 16th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. namespace std {
  2. template<>
  3. struct less<jsval> {
  4. bool operator()(const jsval& lhs, const jsval& rhs) {
  5. return 0 != (*reinterpret_cast<const int64*>(&lhs) - *reinterpret_cast<const int64*>(&rhs));
  6. }
  7. };
  8. }
Add Comment
Please, Sign In to add comment