//===--- CommentVisitor.h - Visitor for Comment subclasses ------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_COMMENTVISITOR_H #define LLVM_CLANG_AST_COMMENTVISITOR_H #include "clang/AST/Comment.h" #include "llvm/Support/ErrorHandling.h" namespace clang { namespace comments { template struct make_ptr { typedef T *type; }; template struct make_const_ptr { typedef const T *type; }; template