mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-13 16:35:35 +08:00
12 lines
163 B
C
12 lines
163 B
C
|
//
|
|||
|
// Created by shuxin zheng on 2023/7/27
|
|||
|
//
|
|||
|
|
|||
|
#pragma once
|
|||
|
|
|||
|
#if __cplusplus >= 201703L
|
|||
|
# define NODISCARD [[nodiscard]]
|
|||
|
#else
|
|||
|
# define NODISCARD
|
|||
|
#endif
|