]> granicus.if.org Git - clang/commitdiff
Update docstrings following the param name change in r200132
authorAlp Toker <alp@nuanti.com>
Sun, 26 Jan 2014 06:41:58 +0000 (06:41 +0000)
committerAlp Toker <alp@nuanti.com>
Sun, 26 Jan 2014 06:41:58 +0000 (06:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200137 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/Diagnostic.h
lib/Basic/DiagnosticIDs.cpp

index bd5f7b06f46b47ac67ef3e9a1133c3ee22e244e1..d5452d74f68eba4b951e2ec48aa8292f2c048891 100644 (file)
@@ -593,8 +593,8 @@ public:
   /// If this is the first request for this diagnostic, it is registered and
   /// created, otherwise the existing ID is returned.
   ///
-  /// \param Message A fixed diagnostic format string that will be hashed and
-  /// mapped to a unique DiagID.
+  /// \param FormatString A fixed diagnostic format string that will be hashed
+  /// and mapped to a unique DiagID.
   template <unsigned N>
   unsigned getCustomDiagID(Level L, const char (&FormatString)[N]) {
     return Diags->getCustomDiagID((DiagnosticIDs::Level)L,
index f752882e9294477d275ab257a403c14e3c15e753..c8cd03e030983ce899740c1f29e0c99388085fea 100644 (file)
@@ -312,12 +312,12 @@ DiagnosticIDs::~DiagnosticIDs() {
 /// and level.  If this is the first request for this diagnostic, it is
 /// registered and created, otherwise the existing ID is returned.
 ///
-/// \param Message A fixed diagnostic format string that will be hashed and
+/// \param FormatString A fixed diagnostic format string that will be hashed and
 /// mapped to a unique DiagID.
-unsigned DiagnosticIDs::getCustomDiagID(Level L, StringRef Message) {
+unsigned DiagnosticIDs::getCustomDiagID(Level L, StringRef FormatString) {
   if (CustomDiagInfo == 0)
     CustomDiagInfo = new diag::CustomDiagInfo();
-  return CustomDiagInfo->getOrCreateDiagID(L, Message, *this);
+  return CustomDiagInfo->getOrCreateDiagID(L, FormatString, *this);
 }