mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
39d3f61497
- use "#pragma once" instead of the regular include guard - fix errors and warnings reported by cppcheck
15 lines
251 B
C++
15 lines
251 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <algorithm>
|
|
|
|
namespace math
|
|
{
|
|
template<typename T>
|
|
T cap(T value, T min_value, T max_value)
|
|
{
|
|
value = std::min<T>(value, max_value);
|
|
value = std::max<T>(value, min_value);
|
|
return value;
|
|
}
|
|
}
|