Elements 6.3.1
A C++ base framework for the Euclid Software.
Loading...
Searching...
No Matches
Compat.h
Go to the documentation of this file.
1
33#ifndef ELEMENTSKERNEL_ELEMENTSKERNEL_COMPAT_H_
34
35#ifdef __cpp_guaranteed_copy_elision
36#define NON_REDUNDANT_MOVE(x) (x)
37#else
38#define NON_REDUNDANT_MOVE(x) std::move(x)
39#endif
40
41#endif // ELEMENTSKERNEL_ELEMENTSKERNEL_COMPAT_H_
42