Fix documentation.

This commit is contained in:
Axel Naumann 2013-05-08 15:49:27 +02:00 committed by sftnight
parent f507a8da1b
commit 3a5d293518

View File

@ -17,9 +17,9 @@ namespace cling {
class StoredValueRef; class StoredValueRef;
// Can be re-implemented to print type-specific details, e.g. as // Can be re-implemented to print type-specific details, e.g. as
// template <typename ACTUAL> // template <typename POSSIBLYDERIVED>
// void dumpPtr(llvm::raw_ostream& o, const clang::Decl* a, ACTUAL* ac, // void printValue(llvm::raw_ostream& o, const MyClass* const p,
// int flags, const char* tname); // POSSIBLYDERIVED* ac, const ValuePrinterInfo& VPI);
template <typename TY> template <typename TY>
void printValue(llvm::raw_ostream& o, const void* const p, void printValue(llvm::raw_ostream& o, const void* const p,
TY* const u, const ValuePrinterInfo& VPI); TY* const u, const ValuePrinterInfo& VPI);
@ -66,11 +66,6 @@ namespace cling {
} // namespace valuePrinterInternal } // namespace valuePrinterInternal
// Can be re-implemented to print type-specific details, e.g. as
// template <typename ACTUAL>
// void dumpPtr(llvm::raw_ostream& o, const clang::Decl* a,
// ACTUAL* ap, int flags, const char* tname);
template <typename TY> template <typename TY>
void printValue(llvm::raw_ostream& o, const void* const p, void printValue(llvm::raw_ostream& o, const void* const p,
TY* const u, const ValuePrinterInfo& PVI) { TY* const u, const ValuePrinterInfo& PVI) {