We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb3c2e5 commit f4cd6e0Copy full SHA for f4cd6e0
cpp/server/defines.hpp
@@ -7,6 +7,9 @@
7
#define MSRV_FORMAT_FUNC(fmt, args)
8
#endif
9
10
+#define MSRV_STRINGIFY_(v) #v
11
+#define MSRV_STRINGIFY(v) MSRV_STRINGIFY_(v)
12
+
13
#define MSRV_NO_COPY_AND_ASSIGN(type) \
14
type(const type&) = delete; \
15
type& operator=(const type&) = delete
cpp/server/project_info.hpp.in
@@ -1,8 +1,5 @@
1
#pragma once
2
3
-#define MSRV_STRINGIFY_(v) #v
4
-#define MSRV_STRINGIFY(v) MSRV_STRINGIFY_(v)
5
-
6
#define MSRV_PROJECT_URL "@CMAKE_PROJECT_HOMEPAGE_URL@"
#define MSRV_WEBUI_ROOT "@WEBUI_ROOT@"
#define MSRV_WEBUI_LICENSES_FILE "@WEBUI_LICENSES_FILE@"
0 commit comments