瀏覽代碼

mac-syphon: Ignore 10.13-only deprecation warning

gxalpha 3 年之前
父節點
當前提交
393af9d916
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      plugins/mac-syphon/syphon.m

+ 4 - 0
plugins/mac-syphon/syphon.m

@@ -678,7 +678,11 @@ static inline void launch_syphon_inject_internal()
 	NSString *path = get_inject_application_path();
 	NSWorkspace *ws = [NSWorkspace sharedWorkspace];
 	if (path)
+	/* This is only ever relevant on macOS 10.13 */
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
 		[ws launchApplication:path];
+#pragma clang diagnostic pop
 }
 
 static bool launch_syphon_inject(obs_properties_t *props, obs_property_t *prop,