14 lines
326 B
C++
14 lines
326 B
C++
|
|
#pragma once
|
|
|
|
#if !defined(MIJIN_INTERNAL_VERSION_SUPPORT_HPP_INCLUDED)
|
|
#define MIJIN_INTERNAL_VERSION_SUPPORT_HPP_INCLUDED 1
|
|
|
|
#if defined(__cpp_deleted_function)
|
|
#define MIJIN_DELETE(reason) = delete(reason)
|
|
#else
|
|
#define MIJIN_DELETE(reason) = delete
|
|
#endif
|
|
|
|
#endif // !defined(MIJIN_INTERNAL_VERSION_SUPPORT_HPP_INCLUDED)
|