From cc927f907f0ae9587e9498993f97aa87d16fa604 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Wed, 9 Apr 2008 13:05:20 -0700 Subject: [PATCH] improve type linking behavior. --- utils/print-introspected-doxygen.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/print-introspected-doxygen.cc b/utils/print-introspected-doxygen.cc index 4ec34ea9c..5f8c562c9 100644 --- a/utils/print-introspected-doxygen.cc +++ b/utils/print-introspected-doxygen.cc @@ -12,7 +12,7 @@ PrintAttributes (TypeId tid, std::ostream &os) os << "
  • " << tid.GetAttributeName (j) << ": " << tid.GetAttributeHelp (j) << std::endl; Ptr checker = tid.GetAttributeChecker (j); - os << "
      " << std::endl << "
    • Type: " << checker->GetType (); + os << "
        " << std::endl << "
      • Type: \\ref " << checker->GetType (); if (checker->HasTypeConstraints ()) { os << " -> " << checker->GetTypeConstraints ();