This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/euler/include/algorithm
2024-05-19 14:39:06 -04:00

12 lines
124 B
Text

#pragma once
namespace std {
template <class t>
void swap(t &a, t &b) {
t tmp = a;
a = b;
b = tmp;
}
}