Skip to content

Commit 9f2bf05

Browse files
committed
inline constexpr in remote_def
1 parent 67f5a79 commit 9f2bf05

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/remote/remote_def.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ constexpr P_ARCH ARCHITECTURE = arch_arm;
7979

8080
// port_server_flags
8181

82-
constexpr USHORT SRVR_server = 1; // server
83-
constexpr USHORT SRVR_multi_client = 2; // multi-client server
84-
constexpr USHORT SRVR_debug = 4; // debug run
85-
constexpr USHORT SRVR_inet = 8; // Inet protocol
86-
constexpr USHORT SRVR_xnet = 16; // Xnet protocol (Win32)
87-
constexpr USHORT SRVR_non_service = 32; // not running as an NT service
88-
constexpr USHORT SRVR_high_priority = 64; // fork off server at high priority
89-
constexpr USHORT SRVR_thread_per_port = 128; // bind thread to a port
90-
constexpr USHORT SRVR_no_icon = 256; // tell the server not to show the icon
82+
inline constexpr USHORT SRVR_server = 1; // server
83+
inline constexpr USHORT SRVR_multi_client = 2; // multi-client server
84+
inline constexpr USHORT SRVR_debug = 4; // debug run
85+
inline constexpr USHORT SRVR_inet = 8; // Inet protocol
86+
inline constexpr USHORT SRVR_xnet = 16; // Xnet protocol (Win32)
87+
inline constexpr USHORT SRVR_non_service = 32; // not running as an NT service
88+
inline constexpr USHORT SRVR_high_priority = 64; // fork off server at high priority
89+
inline constexpr USHORT SRVR_thread_per_port = 128; // bind thread to a port
90+
inline constexpr USHORT SRVR_no_icon = 256; // tell the server not to show the icon
9191

9292
#endif /* REMOTE_REMOTE_DEF_H */

0 commit comments

Comments
 (0)