Document purpose of ProgramPointTag::getTagKind().

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137530 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/clang/Analysis/ProgramPoint.h b/include/clang/Analysis/ProgramPoint.h
index 0e6a659..71e27c6 100644
--- a/include/clang/Analysis/ProgramPoint.h
+++ b/include/clang/Analysis/ProgramPoint.h
@@ -387,6 +387,7 @@
   virtual StringRef getTagDescription() const = 0;    
 
 protected:
+  /// Used to implement 'classof' in subclasses.
   const void *getTagKind() { return TagKind; }
   
 private: