From c65b49f52ec1d97c9fb0c35fc116d416a12b2f32 Mon Sep 17 00:00:00 2001 From: Hugh Bellamy Date: Wed, 8 Feb 2017 21:37:48 +0700 Subject: [PATCH] Fix unknown command tag name warnings --- include/swift/Basic/ManglingUtils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/swift/Basic/ManglingUtils.h b/include/swift/Basic/ManglingUtils.h index 35e8cb202f1..6383247731c 100644 --- a/include/swift/Basic/ManglingUtils.h +++ b/include/swift/Basic/ManglingUtils.h @@ -91,8 +91,8 @@ struct WordReplacement { /// Current operator characters: @/=-+*%<>!&|^~ and the special operator '..' char translateOperatorChar(char op); -/// Returns a string where all characters of the operator \Op are translated to -/// their mangled form. +/// Returns a string where all characters of the operator \p Op are translated +/// to their mangled form. std::string translateOperator(StringRef Op); /// Mangles an identifier using a generic Mangler class.