QtPass 1.6.0
Multi-platform GUI for pass, the standard unix password manager.
Loading...
Searching...
No Matches
helpers.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2026 Anne Jan Brouwer
2// SPDX-License-Identifier: GPL-3.0-or-later
3#ifndef SRC_HELPERS_H_
4#define SRC_HELPERS_H_
5
10
17#if __cplusplus >= 201703L
18#define AS_CONST(x) std::as_const(x)
19#else
20#define AS_CONST(x) qAsConst(x)
21#endif
22
23#endif // SRC_HELPERS_H_