QtPass 1.5.1
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: 2016 Anne Jan Brouwer
2// SPDX-License-Identifier: GPL-3.0-or-later
3#ifndef SRC_HELPERS_H_
4#define SRC_HELPERS_H_
5
6#if __cplusplus >= 201703L
7#define AS_CONST(x) std::as_const(x)
8#else
9#define AS_CONST(x) qAsConst(x)
10#endif
11
12#endif // SRC_HELPERS_H_