Skip to content

Commit f4cd6e0

Browse files
committed
move definition to correct place
1 parent bb3c2e5 commit f4cd6e0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cpp/server/defines.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#define MSRV_FORMAT_FUNC(fmt, args)
88
#endif
99

10+
#define MSRV_STRINGIFY_(v) #v
11+
#define MSRV_STRINGIFY(v) MSRV_STRINGIFY_(v)
12+
1013
#define MSRV_NO_COPY_AND_ASSIGN(type) \
1114
type(const type&) = delete; \
1215
type& operator=(const type&) = delete

cpp/server/project_info.hpp.in

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#pragma once
22

3-
#define MSRV_STRINGIFY_(v) #v
4-
#define MSRV_STRINGIFY(v) MSRV_STRINGIFY_(v)
5-
63
#define MSRV_PROJECT_URL "@CMAKE_PROJECT_HOMEPAGE_URL@"
74
#define MSRV_WEBUI_ROOT "@WEBUI_ROOT@"
85
#define MSRV_WEBUI_LICENSES_FILE "@WEBUI_LICENSES_FILE@"

0 commit comments

Comments
 (0)