aboutsummaryrefslogtreecommitdiff
path: root/snippets/update_min.h
blob: cbc9c37d65f46a426321d32f3f1586961f0bea40 (plain)
1
2
3
4
5
#pragma once

#include <algorithm>

template <typename T> void update_min(T &x, T a) { x = std::min(x, a); }