mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
This commit contains only the result of `git add --renormalize .` `git show --ignore-space-change` can verify that this commit only changes whitespace.
26 lines
295 B
C++
26 lines
295 B
C++
#pragma once
|
|
|
|
#if __cplusplus >= 199711L
|
|
#define GP_IS_CPP11 1
|
|
#else
|
|
#define GP_IS_CPP11 0
|
|
#endif
|
|
|
|
#if GP_IS_CPP11
|
|
#define GP_DELETED = delete
|
|
#else
|
|
#ifndef nullptr
|
|
#define nullptr 0
|
|
#endif
|
|
|
|
#ifndef override
|
|
#define override
|
|
#endif
|
|
|
|
#ifndef final
|
|
#define final
|
|
#endif
|
|
|
|
#define GP_DELETED
|
|
#endif
|