From 7fea3ff67756eb0fcd5af6cc5ed34411eb888403 Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Fri, 20 Sep 2024 16:51:25 +0100 Subject: [PATCH] Fix etag.hpp comment that breaks Doxygen 1.12.0 (#6014) Unfortunately, "*" breaks Doxygen 1.12.0 with the following error: error: end of comment block while expecting command I have no idea why. Anything else like '*' or "x" works, but "*" was clearly intended here. The best I can suggest is: * in quotes. --- sdk/core/azure-core/inc/azure/core/etag.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/azure-core/inc/azure/core/etag.hpp b/sdk/core/azure-core/inc/azure/core/etag.hpp index eec3945ca..56658850f 100644 --- a/sdk/core/azure-core/inc/azure/core/etag.hpp +++ b/sdk/core/azure-core/inc/azure/core/etag.hpp @@ -181,7 +181,7 @@ public: /** * @brief #Azure::ETag representing everything. - * @note The any #Azure::ETag is *, (unquoted). It is NOT the same as "*". + * @note The any #Azure::ETag is *, (unquoted). It is NOT the same as * in quotes. */ static const ETag& Any(); };