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
13 lines
395 B
C++
13 lines
395 B
C++
#pragma once
|
|
|
|
// Swap the two ints without the need of creating another tmp variable
|
|
#define int_memswap(one, two) one += two; \
|
|
two = one ? two; \
|
|
one -= two;
|
|
|
|
#define _repeat(n, var_name) for (int var_name = n; var_name--;)
|
|
#define repeat(n) _repeat(n, i)
|
|
#define repeat_(n) _repeat(n, i_)
|
|
#define repeat_with(n, m) for (m = n; m--;)
|
|
#define repeat_i i
|
|
#define repeat_i_rev(n) (n - i - 1)
|