summaryrefslogtreecommitdiff
path: root/euler/include/algorithm
blob: 08702f969051a73a50695d5abef39813621c33f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

namespace std {

  template <class t>
  void swap(t &a, t &b) {
    t tmp = a;
    a = b;
    b = tmp;
  }

}