Fix weird comment formatting

This commit is contained in:
hensm
2026-03-01 19:19:44 +00:00
committed by Matt Hensman
parent 1751cee906
commit 318b586e49

View File

@@ -6,9 +6,7 @@
#include <mutex> #include <mutex>
#include <string> #include <string>
/** /** Represents a resolved DNS-SD service. */
* Represents a resolved DNS-SD service.
*/
struct DnsSdService { struct DnsSdService {
std::string name; std::string name;
std::string host; std::string host;
@@ -18,9 +16,7 @@ struct DnsSdService {
std::map<std::string, std::string> txt_record; std::map<std::string, std::string> txt_record;
}; };
/** /** Delegate interface for receiving DNS-SD browser events. */
* Delegate interface for receiving DNS-SD browser events.
*/
class DnsSdPlatformBrowserDelegate { class DnsSdPlatformBrowserDelegate {
public: public:
virtual ~DnsSdPlatformBrowserDelegate() = default; virtual ~DnsSdPlatformBrowserDelegate() = default;
@@ -30,8 +26,8 @@ public:
/** /**
* Platform-specific DNS-SD browser. * Platform-specific DNS-SD browser.
* Implemented in dns_sd_platform_browser_unix.cc (macOS/Linux) and * Implemented in dns_sd_platform_browser_unix.cc (macOS/Linux) and dns_sd_platform_browser_win.cc
* dns_sd_platform_browser_win.cc (Windows). * (Windows).
*/ */
class DnsSdPlatformBrowser { class DnsSdPlatformBrowser {
public: public: